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 @@ -209,6 +209,11 @@ podSecurityContext:
209209 runAsUser : 1000
210210 fsGroup : 1000
211211
212+ # -- Pod annotations to be applied to all Redis pods
213+ podAnnotations : {}
214+ # annotation-key: "annotation-value"
215+ # prometheus.io/scrape: "true"
216+ # prometheus.io/port: "6379"
212217
213218# serviceAccountName: redis-sa
214219
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 @@ -147,6 +147,12 @@ tolerations: []
147147
148148serviceAccountName : " "
149149
150+ # -- Pod annotations to be applied to all Redis pods
151+ podAnnotations : {}
152+ # annotation-key: "annotation-value"
153+ # prometheus.io/scrape: "true"
154+ # prometheus.io/port: "6379"
155+
150156TLS :
151157 ca : ca.key
152158 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 @@ -148,6 +148,12 @@ tolerations: []
148148
149149serviceAccountName : " "
150150
151+ # -- Pod annotations to be applied to all sentinel pods
152+ podAnnotations : {}
153+ # annotation-key: "annotation-value"
154+ # prometheus.io/scrape: "true"
155+ # prometheus.io/port: "6379"
156+
151157TLS :
152158 ca : ca.key
153159 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