소스 검색

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 8 달 전
부모
커밋
823261da4e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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
           {{- if .Values.livenessProbe.enabled }}
           livenessProbe:
-          {{- toYaml .Values.livenessProbe.spec | nindent 12 }}
+          {{- toYaml (omit .Values.livenessProbe.spec "address") | nindent 12 }}
           {{- end }}
           {{- with .Values.extraEnv }}
           env: