From 1c0b8952968ba82b1abbe84fffd1f7d6ce74de09 Mon Sep 17 00:00:00 2001 From: Komal Sukhani Date: Thu, 12 Oct 2023 12:44:55 +0530 Subject: [PATCH] Update status check endpoint of dashboard to /hello (#127) Co-authored-by: Pranshu <104971506+singhpr@users.noreply.github.com> --- components/tyk-dashboard/templates/deployment-dashboard.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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