diff --git a/charts/op-conductor/Chart.yaml b/charts/op-conductor/Chart.yaml index 9bdb3c9b..c746f5cd 100644 --- a/charts/op-conductor/Chart.yaml +++ b/charts/op-conductor/Chart.yaml @@ -1,7 +1,7 @@ --- name: op-conductor apiVersion: v2 -version: 0.0.6 +version: 0.0.7 description: Helm chart deploying OP Conductor, a HA controller for op-node home: https://clabs.co sources: diff --git a/charts/op-conductor/README.md b/charts/op-conductor/README.md index d4f7dbd6..1ba437d9 100644 --- a/charts/op-conductor/README.md +++ b/charts/op-conductor/README.md @@ -1,6 +1,6 @@ # op-conductor -![Version: 0.0.6](https://img.shields.io/badge/Version-0.0.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.8.0](https://img.shields.io/badge/AppVersion-v1.8.0-informational?style=flat-square) +![Version: 0.0.7](https://img.shields.io/badge/Version-0.0.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.8.0](https://img.shields.io/badge/AppVersion-v1.8.0-informational?style=flat-square) Helm chart deploying OP Conductor, a HA controller for op-node @@ -78,6 +78,7 @@ Helm chart deploying OP Conductor, a HA controller for op-node | services.rpc.type | string | `"ClusterIP"` | | | statefulset.annotations | object | `{}` | | | statefulset.podAnnotations | object | `{}` | | +| updateStrategy.type | string | `"RollingUpdate"` | | ---------------------------------------------- Autogenerated from chart metadata using [helm-docs](https://github.com/norwoodj/helm-docs). To regenerate run `helm-docs` command at this folder. diff --git a/charts/op-conductor/templates/statefulset.yaml b/charts/op-conductor/templates/statefulset.yaml index a8f550a6..38857e8f 100644 --- a/charts/op-conductor/templates/statefulset.yaml +++ b/charts/op-conductor/templates/statefulset.yaml @@ -132,9 +132,7 @@ spec: configMap: name: {{ template "op-conductor.fullname" . }}-scripts updateStrategy: - rollingUpdate: - partition: 0 - type: RollingUpdate + {{- toYaml .Values.updateStrategy | nindent 4 }} volumeClaimTemplates: - apiVersion: v1 kind: PersistentVolumeClaim diff --git a/charts/op-conductor/values.yaml b/charts/op-conductor/values.yaml index cf1c27f7..35df24a7 100644 --- a/charts/op-conductor/values.yaml +++ b/charts/op-conductor/values.yaml @@ -13,6 +13,10 @@ image: repository: us-west1-docker.pkg.dev/blockchaintestsglobaltestnet/dev-images/op-conductor tag: ea8d7ce5425edb3d1adcf0a8bb2a98fcdb21b3e0 pullPolicy: IfNotPresent + +updateStrategy: + type: RollingUpdate + statefulset: annotations: {} podAnnotations: {}