Skip to content

Commit

Permalink
FIX dynamic port for marketing web health check
Browse files Browse the repository at this point in the history
  • Loading branch information
wabscale committed Mar 19, 2024
1 parent 06eb5ab commit 3aa4f32
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions k8s/chart/templates/marketing-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,21 +49,21 @@ spec:
startupProbe:
httpGet:
path: /
port: 3000
port: {{ .Values.marketing.port }}
initialDelaySeconds: 1
periodSeconds: 1
failureThreshold: 60
livenessProbe:
httpGet:
path: /
port: 3000
port: {{ .Values.marketing.port }}
initialDelaySeconds: 60
failureThreshold: 10
periodSeconds: 60
readinessProbe:
httpGet:
path: /
port: 3000
port: {{ .Values.marketing.port }}
initialDelaySeconds: 3
periodSeconds: 3
failureThreshold: 1
Expand Down

0 comments on commit 3aa4f32

Please sign in to comment.