Skip to content

Commit

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

0 comments on commit 06eb5ab

Please sign in to comment.