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

Commit

Permalink
fix(cleanup-job): add OR clause to prevent job from failing (#226)
Browse files Browse the repository at this point in the history
- Update Jiva dependency
- Update cStor dependency

Signed-off-by: Niladri Halder <niladri.halder@mayadata.io>
  • Loading branch information
niladrih authored Jun 18, 2021
1 parent 057a936 commit 777dd81
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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

0 comments on commit 777dd81

Please sign in to comment.