All checks were successful
renovate / renovate (push) Successful in 34s
lint-and-test / lint-helm (push) Successful in 12s
lint-and-test / chart-testing (push) Successful in 20s
release-charts-generic-device-plugin / release (push) Successful in 18s
release-charts-redis-replication / release (push) Successful in 15s
42 lines
1.3 KiB
YAML
42 lines
1.3 KiB
YAML
{{- if .Values.redisSentinel.enabled }}
|
|
---
|
|
apiVersion: redis.redis.opstreelabs.in/v1beta2
|
|
kind: RedisSentinel
|
|
metadata:
|
|
name: {{ include "redis.sentinelName" . }}
|
|
namespace: {{ include "redis.namespace" . }}
|
|
labels:
|
|
{{- include "redis.labels" . | nindent 4 }}
|
|
{{- include "redis.sentinelSelectorLabels" . | nindent 4 }}
|
|
spec:
|
|
clusterSize: {{ .Values.redisSentinel.clusterSize }}
|
|
|
|
podSecurityContext:
|
|
{{- with .Values.redisSentinel.podSecurityContext }}
|
|
{{- toYaml . | nindent 10 }}
|
|
{{ end }}
|
|
|
|
redisSentinelConfig:
|
|
redisReplicationName: {{ include "redis.replicationName" . }}
|
|
{{ if .Values.existingSecret.enabled }}
|
|
redisReplicationPassword:
|
|
secretKeyRef:
|
|
name: {{ .Values.existingSecret.name }}
|
|
key: {{ .Values.existingSecret.key }}
|
|
{{ end }}
|
|
|
|
kubernetesConfig:
|
|
image: "{{ .Values.redisSentinel.image.repository }}:{{ .Values.redisSentinel.image.tag }}"
|
|
imagePullPolicy: {{ .Values.redisSentinel.image.pullPolicy }}
|
|
resources:
|
|
{{- with .Values.redisSentinel.resources }}
|
|
{{- toYaml . | nindent 10 }}
|
|
{{ end }}
|
|
|
|
{{ if .Values.existingSecret.enabled }}
|
|
redisSecret:
|
|
name: {{ .Values.existingSecret.name }}
|
|
key: {{ .Values.existingSecret.key }}
|
|
{{ end }}
|
|
{{- end }}
|