Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

fix(cleanup-job): add OR clause to prevent job from failing #226

Merged
merged 3 commits into from
Jun 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions charts/openebs/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
version: 2.10.0
version: 2.10.1
name: openebs
appVersion: 2.10.0
description: Containerized Storage for Containers
Expand Down Expand Up @@ -27,11 +27,11 @@ dependencies:
repository: "https://openebs.github.io/dynamic-localpv-provisioner"
condition: localpv-provisioner.enabled
- name: cstor
version: "2.10.0"
version: "2.10.1"
repository: "https://openebs.github.io/cstor-operators"
condition: cstor.enabled
- name: jiva
version: "2.10.0"
version: "2.10.1"
repository: "https://openebs.github.io/jiva-operator"
condition: jiva.enabled
- name: zfs-localpv
Expand Down
2 changes: 1 addition & 1 deletion charts/openebs/templates/cleanup-webhook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ spec:
- /bin/sh
- -c
- >
kubectl delete validatingWebhookConfiguration openebs-validation-webhook-cfg;
kubectl delete validatingWebhookConfiguration openebs-validation-webhook-cfg || true;
restartPolicy: OnFailure
{{- end }}
4 changes: 2 additions & 2 deletions charts/openebs/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -326,15 +326,15 @@ jiva:
# registry: quay.io/
# repository: openebs/jiva-operator
# pullPolicy: IfNotPresent
# tag: 2.10.0
# tag: 2.10.1
#
# jivaCSIPlugin:
# remount: "true"
# image:
# registry: quay.io/
# repository: openebs/jiva-csi
# pullPolicy: IfNotPresent
# tag: 2.10.0
# tag: 2.10.1

cstor:

Expand Down