2021-11-08 14:01:14 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Secret
|
|
|
|
metadata:
|
|
|
|
name: {{ include "common.names.fullname" . }}
|
|
|
|
labels:
|
|
|
|
{{- include "common.labels" . | nindent 4 }}
|
|
|
|
annotations:
|
|
|
|
{{- with .Values.annotations }}
|
|
|
|
{{- toYaml . | nindent 4 }}
|
|
|
|
{{- end }}
|
|
|
|
type: Opaque
|
|
|
|
data:
|
2021-11-12 19:04:28 +00:00
|
|
|
redis-password: {{ ( .Values.redisPassword | default "nothing" ) | b64enc | quote }}
|