File tree Expand file tree Collapse file tree 12 files changed +39
-0
lines changed
Expand file tree Collapse file tree 12 files changed +39
-0
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ helm delete <my-release> --namespace <namespace>
6565| initContainer.imagePullPolicy | string | ` "IfNotPresent" ` | |
6666| initContainer.resources | object | ` {} ` | |
6767| labels | object | ` {} ` | |
68+ | podAnnotations | object | ` {} ` | Pod annotations to be applied to all Redis pods |
6869| podSecurityContext.fsGroup | int | ` 1000 ` | |
6970| podSecurityContext.runAsUser | int | ` 1000 ` | |
7071| priorityClassName | string | ` "" ` | |
Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ metadata:
55 name : {{ .Values.redisCluster.name | default .Release.Name }}
66 labels : {{- include "common.labels" . | nindent 4 }}
77 annotations :
8+ {{- if .Values.podAnnotations }}
9+ {{ toYaml .Values.podAnnotations | nindent 4 }}
10+ {{- end }}
811 {{ if .Values.redisCluster.recreateStatefulSetOnUpdateInvalid }}
912 redis.opstreelabs.in/recreate-statefulset : " true"
1013 {{ end }}
Original file line number Diff line number Diff line change @@ -214,6 +214,11 @@ podSecurityContext:
214214 runAsUser : 1000
215215 fsGroup : 1000
216216
217+ # -- Pod annotations to be applied to all Redis pods
218+ podAnnotations : {}
219+ # annotation-key: "annotation-value"
220+ # prometheus.io/scrape: "true"
221+ # prometheus.io/port: "6379"
217222
218223# serviceAccountName: redis-sa
219224
Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ helm delete <my-release> --namespace <namespace>
6464| initContainer.imagePullPolicy | string | ` "IfNotPresent" ` | |
6565| initContainer.resources | object | ` {} ` | |
6666| labels | object | ` {} ` | |
67+ | podAnnotations | object | ` {} ` | Pod annotations to be applied to all Redis pods |
6768| nodeSelector | object | ` {} ` | |
6869| pdb.enabled | bool | ` false ` | |
6970| pdb.maxUnavailable | string | ` nil ` | |
Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ metadata:
55 name : {{ .Values.redisReplication.name | default .Release.Name }}
66 labels : {{- include "common.labels" . | nindent 4 }}
77 annotations :
8+ {{- if .Values.podAnnotations }}
9+ {{ toYaml .Values.podAnnotations | nindent 4 }}
10+ {{- end }}
811 {{ if .Values.redisReplication.recreateStatefulSetOnUpdateInvalid }}
912 redis.opstreelabs.in/recreate-statefulset : " true"
1013 {{ end }}
Original file line number Diff line number Diff line change @@ -151,6 +151,12 @@ tolerations: []
151151
152152serviceAccountName : " "
153153
154+ # -- Pod annotations to be applied to all Redis pods
155+ podAnnotations : {}
156+ # annotation-key: "annotation-value"
157+ # prometheus.io/scrape: "true"
158+ # prometheus.io/port: "6379"
159+
154160TLS :
155161 ca : ca.key
156162 cert : tls.crt
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ helm delete <my-release> --namespace <namespace>
6363| initContainer.imagePullPolicy | string | ` "IfNotPresent" ` | |
6464| initContainer.resources | object | ` {} ` | |
6565| labels | object | ` {} ` | |
66+ | podAnnotations | object | ` {} ` | Pod annotations to be applied to all sentinel pods |
6667| livenessProbe.failureThreshold | int | ` 3 ` | |
6768| livenessProbe.initialDelaySeconds | int | ` 1 ` | |
6869| livenessProbe.periodSeconds | int | ` 10 ` | |
Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ metadata:
55 name : {{ .Values.redisSentinel.name | default .Release.Name }}
66 labels : {{- include "common.labels" . | nindent 4 }}
77 annotations :
8+ {{- if .Values.podAnnotations }}
9+ {{ toYaml .Values.podAnnotations | nindent 4 }}
10+ {{- end }}
811 {{ if .Values.redisSentinel.recreateStatefulSetOnUpdateInvalid }}
912 redis.opstreelabs.in/recreate-statefulset : " true"
1013 {{ end }}
Original file line number Diff line number Diff line change @@ -152,6 +152,12 @@ tolerations: []
152152
153153serviceAccountName : " "
154154
155+ # -- Pod annotations to be applied to all sentinel pods
156+ podAnnotations : {}
157+ # annotation-key: "annotation-value"
158+ # prometheus.io/scrape: "true"
159+ # prometheus.io/port: "6379"
160+
155161TLS :
156162 ca : ca.key
157163 cert : tls.crt
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ helm delete <my-release> --namespace <namespace>
6363| initContainer.imagePullPolicy | string | ` "IfNotPresent" ` | |
6464| initContainer.resources | object | ` {} ` | |
6565| labels | object | ` {} ` | |
66+ | podAnnotations | object | ` {} ` | Pod annotations to be applied to all Redis pods |
6667| nodeSelector | object | ` {} ` | |
6768| podSecurityContext.fsGroup | int | ` 1000 ` | |
6869| podSecurityContext.runAsUser | int | ` 1000 ` | |
You can’t perform that action at this time.
0 commit comments