diff --git a/akka/Chart.yaml b/akka/Chart.yaml index 199e99b9..26ad05ac 100644 --- a/akka/Chart.yaml +++ b/akka/Chart.yaml @@ -14,7 +14,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. -version: 0.2.21 +version: 0.2.22 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. diff --git a/akka/README.md b/akka/README.md index 45998fc4..9796484f 100644 --- a/akka/README.md +++ b/akka/README.md @@ -172,7 +172,8 @@ The following table lists the configurable parameters of the akka chart and thei | `rollout.revisionHistoryLimit` | The number of old ReplicaSets to retain to allow rollback for the rollout | `10` | | `rollout.strategy` | Specifies the strategy used to replace old pods by new ones for the rollout | `{}` | | `deployment.enabled` | Specifies whether to create a deployment resource | `true` | -| `statefulset.enabled` | Specifies whether to create a statefulset resource | `false` | +| `statefulSet.annotations` | Annotations to be added to statefulset | {} | +| `statefulSet.enabled` | Specifies whether to create a statefulset resource | `false` | | `statefulSet.updateStrategy` | Specifies the strategy used to replace old pods by new ones for the StatefulSet | `{}` | | `statefulSet.podManagementPolicy` | statefulset allows you to relax its ordering guarantees while preserving its uniqueness and identity guarantees | `Parallel` | | `statefulSet.env` | Extra environment variables that will be passed onto pods for StatefulSet. If not set it will be fallback to `env`.| `[]` | diff --git a/akka/templates/statefulset.yaml b/akka/templates/statefulset.yaml index 657fc6cd..64b669f0 100644 --- a/akka/templates/statefulset.yaml +++ b/akka/templates/statefulset.yaml @@ -4,7 +4,7 @@ apiVersion: apps/v1 kind: StatefulSet metadata: annotations: - {{- with .Values.annotations }} + {{- with .Values.statefulSet.annotations }} {{- toYaml . | nindent 4 }} {{- end }} labels: diff --git a/akka/values.yaml b/akka/values.yaml index 2bf49872..a3ead1e0 100644 --- a/akka/values.yaml +++ b/akka/values.yaml @@ -433,6 +433,7 @@ deployment: enabled: true statefulSet: + annotations: {} enabled: false env: [] podManagementPolicy: Parallel