Skip to content

Commit 3aa4f32

Browse files
committed
FIX dynamic port for marketing web health check
1 parent 06eb5ab commit 3aa4f32

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

k8s/chart/templates/marketing-web.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,21 +49,21 @@ spec:
4949
startupProbe:
5050
httpGet:
5151
path: /
52-
port: 3000
52+
port: {{ .Values.marketing.port }}
5353
initialDelaySeconds: 1
5454
periodSeconds: 1
5555
failureThreshold: 60
5656
livenessProbe:
5757
httpGet:
5858
path: /
59-
port: 3000
59+
port: {{ .Values.marketing.port }}
6060
initialDelaySeconds: 60
6161
failureThreshold: 10
6262
periodSeconds: 60
6363
readinessProbe:
6464
httpGet:
6565
path: /
66-
port: 3000
66+
port: {{ .Values.marketing.port }}
6767
initialDelaySeconds: 3
6868
periodSeconds: 3
6969
failureThreshold: 1

0 commit comments

Comments
 (0)