Skip to content

Commit 06eb5ab

Browse files
committed
FIX pincer health check
1 parent a590d38 commit 06eb5ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

k8s/chart/templates/pincer-web.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,21 +65,21 @@ spec:
6565
startupProbe:
6666
httpGet:
6767
path: /
68-
port: 3000
68+
port: {{ .Values.pincer.port }}
6969
initialDelaySeconds: 1
7070
periodSeconds: 1
7171
failureThreshold: 60
7272
livenessProbe:
7373
httpGet:
7474
path: /
75-
port: 3000
75+
port: {{ .Values.pincer.port }}
7676
initialDelaySeconds: 60
7777
failureThreshold: 10
7878
periodSeconds: 60
7979
readinessProbe:
8080
httpGet:
8181
path: /
82-
port: 3000
82+
port: {{ .Values.pincer.port }}
8383
initialDelaySeconds: 3
8484
periodSeconds: 3
8585
failureThreshold: 1

0 commit comments

Comments
 (0)