fix wrong yaml

This commit is contained in:
Markus Blaschke 2024-01-23 12:25:27 +01:00 committed by GitHub
parent 73b5b6ce70
commit ba3a4dfd93
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -149,13 +149,13 @@ spec:
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
{{- if .Values.startupProbe }}
startupProbe: {{ .Values.startupProbe }}
startupProbe: {{ toYaml .Values.startupProbe | nindent 12 }}
{{- end }}
{{- if .Values.livenessProbe }}
livenessProbe: {{ .Values.livenessProbe }}
livenessProbe: {{ toYaml .Values.livenessProbe | nindent 12 }}
{{- end }}
{{- if .Values.readinessProbe }}
readinessProbe: {{ .Values.readinessProbe }}
readinessProbe: {{ toYaml .Values.readinessProbe | nindent 12 }}
{{- end }}
volumeMounts:
{{- if .Values.authSecret.enabled }}