diff --git a/components/tyk-dashboard/templates/deployment-dashboard.yaml b/components/tyk-dashboard/templates/deployment-dashboard.yaml index 747a4cf2..087601e0 100644 --- a/components/tyk-dashboard/templates/deployment-dashboard.yaml +++ b/components/tyk-dashboard/templates/deployment-dashboard.yaml @@ -219,7 +219,7 @@ spec: livenessProbe: httpGet: scheme: "HTTP{{ if .Values.global.tls.dashboard }}S{{ end }}" - path: / + path: /hello port: {{ .Values.global.servicePorts.dashboard }} initialDelaySeconds: 10 periodSeconds: 2 @@ -228,7 +228,7 @@ spec: readinessProbe: httpGet: scheme: "HTTP{{ if .Values.global.tls.dashboard }}S{{ end }}" - path: / + path: /hello port: {{ .Values.global.servicePorts.dashboard }} initialDelaySeconds: 10 periodSeconds: 10