Skip to content

Commit

Permalink
fixes deployment template readiness and liveness probes with correct …
Browse files Browse the repository at this point in the history
…port

Signed-off-by: Guy Arad <[email protected]>
  • Loading branch information
guyarad committed Oct 31, 2023
1 parent 0bbedeb commit 50b1902
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions charts/flyte-binary/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -192,15 +192,17 @@ spec:
{{- else }}
httpGet:
path: /healthcheck
port: http
port: 8088
initialDelaySeconds: 60
{{- end }}
readinessProbe:
{{- if .Values.deployment.readinessProbe }}
{{- tpl ( .Values.deployment.readinessProbe | toYaml ) . | nindent 12 }}
{{- else }}
httpGet:
path: /healthcheck
port: http
port: 8088
initialDelaySeconds: 60
{{- end }}
{{- if .Values.deployment.resources }}
resources: {{- toYaml .Values.deployment.resources | nindent 12 }}
Expand Down

0 comments on commit 50b1902

Please sign in to comment.