Browse Source

fix(deployment): exclude 'address' key from livenessProbe definition (#5377)

Signed-off-by: Baptiste Roux <arte.but.posix@gmail.com>
Co-authored-by: Gergely Brautigam <skarlso777@gmail.com>
Baptiste Roux 6 months ago
parent
commit
823261da4e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      deploy/charts/external-secrets/templates/deployment.yaml

+ 1 - 1
deploy/charts/external-secrets/templates/deployment.yaml

@@ -120,7 +120,7 @@ spec:
               name: metrics
               name: metrics
           {{- if .Values.livenessProbe.enabled }}
           {{- if .Values.livenessProbe.enabled }}
           livenessProbe:
           livenessProbe:
-          {{- toYaml .Values.livenessProbe.spec | nindent 12 }}
+          {{- toYaml (omit .Values.livenessProbe.spec "address") | nindent 12 }}
           {{- end }}
           {{- end }}
           {{- with .Values.extraEnv }}
           {{- with .Values.extraEnv }}
           env:
           env: