From da48b045ce36aa4f18ec5df8ed24d3322b2345d9 Mon Sep 17 00:00:00 2001 From: Gabriel Ladzaretti Date: Sun, 18 Aug 2024 17:32:01 +0300 Subject: [PATCH] fix worker liveliness and readiness port --- helm-charts/mend-renovate-ee/templates/worker-deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm-charts/mend-renovate-ee/templates/worker-deployment.yaml b/helm-charts/mend-renovate-ee/templates/worker-deployment.yaml index f7f296fc..4479b1fb 100644 --- a/helm-charts/mend-renovate-ee/templates/worker-deployment.yaml +++ b/helm-charts/mend-renovate-ee/templates/worker-deployment.yaml @@ -129,11 +129,11 @@ spec: - name: ee-worker containerPort: 8080 protocol: TCP - {{- with .Values.renovateServer.livenessProbe }} + {{- with .Values.renovateWorker.livenessProbe }} livenessProbe: {{- toYaml . | nindent 12 }} {{- end }} - {{- with .Values.renovateServer.readinessProbe }} + {{- with .Values.renovateWorker.readinessProbe }} readinessProbe: {{- toYaml . | nindent 12 }} {{- end }}