From 50b1902c77ceabeec360aaa7b3bc508ba56f9f3f Mon Sep 17 00:00:00 2001 From: Guy Arad Date: Tue, 31 Oct 2023 15:01:28 +0200 Subject: [PATCH] fixes deployment template readiness and liveness probes with correct port Signed-off-by: Guy Arad --- charts/flyte-binary/templates/deployment.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/charts/flyte-binary/templates/deployment.yaml b/charts/flyte-binary/templates/deployment.yaml index cc8beff2d9e..693a488db41 100644 --- a/charts/flyte-binary/templates/deployment.yaml +++ b/charts/flyte-binary/templates/deployment.yaml @@ -192,7 +192,8 @@ spec: {{- else }} httpGet: path: /healthcheck - port: http + port: 8088 + initialDelaySeconds: 60 {{- end }} readinessProbe: {{- if .Values.deployment.readinessProbe }} @@ -200,7 +201,8 @@ spec: {{- else }} httpGet: path: /healthcheck - port: http + port: 8088 + initialDelaySeconds: 60 {{- end }} {{- if .Values.deployment.resources }} resources: {{- toYaml .Values.deployment.resources | nindent 12 }}