mirror of https://github.com/easzlab/kubeasz.git
12 lines
279 B
YAML
12 lines
279 B
YAML
|
{{- if and .Values.auth (not .Values.existingSecret) -}}
|
||
|
apiVersion: v1
|
||
|
kind: Secret
|
||
|
metadata:
|
||
|
name: {{ template "redis-ha.fullname" . }}
|
||
|
labels:
|
||
|
{{ include "labels.standard" . | indent 4 }}
|
||
|
type: Opaque
|
||
|
data:
|
||
|
auth: {{ .Values.redisPassword | b64enc | quote }}
|
||
|
{{- end -}}
|