Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions charts/redis-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ helm delete <my-release> --namespace <namespace>
| initContainer.imagePullPolicy | string | `"IfNotPresent"` | |
| initContainer.resources | object | `{}` | |
| labels | object | `{}` | |
| podAnnotations | object | `{}` | Pod annotations to be applied to all Redis pods |
| podSecurityContext.fsGroup | int | `1000` | |
| podSecurityContext.runAsUser | int | `1000` | |
| priorityClassName | string | `""` | |
Expand Down
3 changes: 3 additions & 0 deletions charts/redis-cluster/templates/redis-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ metadata:
name: {{ .Values.redisCluster.name | default .Release.Name }}
labels: {{- include "common.labels" . | nindent 4 }}
annotations:
{{- if .Values.podAnnotations }}
{{ toYaml .Values.podAnnotations | nindent 4 }}
{{- end }}
{{ if .Values.redisCluster.recreateStatefulSetOnUpdateInvalid }}
redis.opstreelabs.in/recreate-statefulset: "true"
{{ end }}
Expand Down
5 changes: 5 additions & 0 deletions charts/redis-cluster/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,11 @@ podSecurityContext:
runAsUser: 1000
fsGroup: 1000

# -- Pod annotations to be applied to all Redis pods
podAnnotations: {}
# annotation-key: "annotation-value"
# prometheus.io/scrape: "true"
# prometheus.io/port: "6379"

# serviceAccountName: redis-sa

Expand Down
1 change: 1 addition & 0 deletions charts/redis-replication/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ helm delete <my-release> --namespace <namespace>
| initContainer.imagePullPolicy | string | `"IfNotPresent"` | |
| initContainer.resources | object | `{}` | |
| labels | object | `{}` | |
| podAnnotations | object | `{}` | Pod annotations to be applied to all Redis pods |
| nodeSelector | object | `{}` | |
| pdb.enabled | bool | `false` | |
| pdb.maxUnavailable | string | `nil` | |
Expand Down
3 changes: 3 additions & 0 deletions charts/redis-replication/templates/redis-replication.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ metadata:
name: {{ .Values.redisReplication.name | default .Release.Name }}
labels: {{- include "common.labels" . | nindent 4 }}
annotations:
{{- if .Values.podAnnotations }}
{{ toYaml .Values.podAnnotations | nindent 4 }}
{{- end }}
{{ if .Values.redisReplication.recreateStatefulSetOnUpdateInvalid }}
redis.opstreelabs.in/recreate-statefulset: "true"
{{ end }}
Expand Down
6 changes: 6 additions & 0 deletions charts/redis-replication/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,12 @@ tolerations: []

serviceAccountName: ""

# -- Pod annotations to be applied to all Redis pods
podAnnotations: {}
# annotation-key: "annotation-value"
# prometheus.io/scrape: "true"
# prometheus.io/port: "6379"

TLS:
ca: ca.key
cert: tls.crt
Expand Down
1 change: 1 addition & 0 deletions charts/redis-sentinel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ helm delete <my-release> --namespace <namespace>
| initContainer.imagePullPolicy | string | `"IfNotPresent"` | |
| initContainer.resources | object | `{}` | |
| labels | object | `{}` | |
| podAnnotations | object | `{}` | Pod annotations to be applied to all sentinel pods |
| livenessProbe.failureThreshold | int | `3` | |
| livenessProbe.initialDelaySeconds | int | `1` | |
| livenessProbe.periodSeconds | int | `10` | |
Expand Down
3 changes: 3 additions & 0 deletions charts/redis-sentinel/templates/redis-sentinel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ metadata:
name: {{ .Values.redisSentinel.name | default .Release.Name }}
labels: {{- include "common.labels" . | nindent 4 }}
annotations:
{{- if .Values.podAnnotations }}
{{ toYaml .Values.podAnnotations | nindent 4 }}
{{- end }}
{{ if .Values.redisSentinel.recreateStatefulSetOnUpdateInvalid }}
redis.opstreelabs.in/recreate-statefulset: "true"
{{ end }}
Expand Down
6 changes: 6 additions & 0 deletions charts/redis-sentinel/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,12 @@ tolerations: []

serviceAccountName: ""

# -- Pod annotations to be applied to all sentinel pods
podAnnotations: {}
# annotation-key: "annotation-value"
# prometheus.io/scrape: "true"
# prometheus.io/port: "6379"

TLS:
ca: ca.key
cert: tls.crt
Expand Down
1 change: 1 addition & 0 deletions charts/redis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ helm delete <my-release> --namespace <namespace>
| initContainer.imagePullPolicy | string | `"IfNotPresent"` | |
| initContainer.resources | object | `{}` | |
| labels | object | `{}` | |
| podAnnotations | object | `{}` | Pod annotations to be applied to all Redis pods |
| nodeSelector | object | `{}` | |
| podSecurityContext.fsGroup | int | `1000` | |
| podSecurityContext.runAsUser | int | `1000` | |
Expand Down
3 changes: 3 additions & 0 deletions charts/redis/templates/redis-standalone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ metadata:
name: {{ .Values.redisStandalone.name | default .Release.Name }}
labels: {{- include "common.labels" . | nindent 4 }}
annotations:
{{- if .Values.podAnnotations }}
{{ toYaml .Values.podAnnotations | nindent 4 }}
{{- end }}
{{ if .Values.redisStandalone.recreateStatefulSetOnUpdateInvalid }}
redis.opstreelabs.in/recreate-statefulset: "true"
{{ end }}
Expand Down
6 changes: 6 additions & 0 deletions charts/redis/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,12 @@ tolerations: []

serviceAccountName: ""

# -- Pod annotations to be applied to all Redis pods
podAnnotations: {}
# annotation-key: "annotation-value"
# prometheus.io/scrape: "true"
# prometheus.io/port: "6379"

TLS:
ca: ca.key
cert: tls.crt
Expand Down