Skip to content

Commit 76e0cdb

Browse files
committed
fix bad indentation on redis standalone additional configs
It was incorrectly being nested under the redis exporter config key. Signed-off-by: Daniel Schaaff <daniel@danielschaaff.com>
1 parent 3698e79 commit 76e0cdb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

charts/redis/templates/redis-standalone.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@ spec:
2525
{{- if .Values.redisStandalone.minReadySeconds }}
2626
minReadySeconds: {{ .Values.redisStandalone.minReadySeconds }}
2727
{{- end }}
28-
28+
2929
redisExporter:
3030
enabled: {{ .Values.redisExporter.enabled }}
3131
image: "{{ .Values.redisExporter.image }}:{{ .Values.redisExporter.tag }}"
3232
imagePullPolicy: "{{ .Values.redisExporter.imagePullPolicy }}"
3333
{{- if .Values.redisExporter.resources}}
3434
resources: {{ toYaml .Values.redisExporter.resources | nindent 6 }}
35-
{{- end }}
35+
{{- end }}
3636
{{- if .Values.redisExporter.env }}
3737
env: {{ toYaml .Values.redisExporter.env | nindent 6 }}
3838
{{- end }}
39-
39+
4040
{{- if .Values.externalConfig.enabled }}
41-
redisConfig:
42-
additionalRedisConfig: "{{ .Values.redisStandalone.name | default .Release.Name }}-ext-config"
41+
redisConfig:
42+
additionalRedisConfig: "{{ .Values.redisStandalone.name | default .Release.Name }}-ext-config"
4343
{{- end }}
4444
{{- if .Values.storageSpec }}
4545
storage: {{ toYaml .Values.storageSpec | nindent 4 }}

0 commit comments

Comments
 (0)