diff --git a/k8s/chart/templates/pincer-web.yml b/k8s/chart/templates/pincer-web.yml index 46816700..90eeae76 100644 --- a/k8s/chart/templates/pincer-web.yml +++ b/k8s/chart/templates/pincer-web.yml @@ -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