fix(argo-cd): Allow specify redis config file
Signed-off-by: ausias-armesto <ausiasarmesto@gmail.com>
This commit is contained in:
parent
e7c3090cbf
commit
0049707e8f
1 changed files with 3 additions and 3 deletions
|
@ -54,13 +54,13 @@ spec:
|
||||||
image: {{ .Values.redis.image.repository }}:{{ .Values.redis.image.tag }}
|
image: {{ .Values.redis.image.repository }}:{{ .Values.redis.image.tag }}
|
||||||
imagePullPolicy: {{ default .Values.global.image.imagePullPolicy .Values.redis.image.imagePullPolicy }}
|
imagePullPolicy: {{ default .Values.global.image.imagePullPolicy .Values.redis.image.imagePullPolicy }}
|
||||||
args:
|
args:
|
||||||
|
{{- with .Values.redis.extraArgs }}
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
- --save
|
- --save
|
||||||
- ""
|
- ""
|
||||||
- --appendonly
|
- --appendonly
|
||||||
- "no"
|
- "no"
|
||||||
{{- with .Values.redis.extraArgs }}
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with (concat .Values.global.env .Values.redis.env) }}
|
{{- with (concat .Values.global.env .Values.redis.env) }}
|
||||||
env:
|
env:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
|
|
Loading…
Reference in a new issue