From 98b62ff0bebcd20b796f480579e8f14fbd6a5020 Mon Sep 17 00:00:00 2001 From: Evans Tucker Date: Sun, 28 Feb 2021 17:40:13 -0800 Subject: [PATCH] Changing default probe endpoint from / to /health. --- charts/unleash/Chart.yaml | 2 +- charts/unleash/values.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/unleash/Chart.yaml b/charts/unleash/Chart.yaml index 50b8cae..46356f6 100644 --- a/charts/unleash/Chart.yaml +++ b/charts/unleash/Chart.yaml @@ -16,4 +16,4 @@ sources: - https://github.com/Unleash/unleash-docker - https://github.com/Unleash/helm-charts type: application -version: 1.0.2 +version: 1.0.3 diff --git a/charts/unleash/values.yaml b/charts/unleash/values.yaml index 6233e72..f985c4c 100644 --- a/charts/unleash/values.yaml +++ b/charts/unleash/values.yaml @@ -165,7 +165,7 @@ ingress: livenessProbe: enabled: true - path: / + path: /health initialDelaySeconds: 30 timeoutSeconds: 10 @@ -177,7 +177,7 @@ podAnnotations: {} readinessProbe: enabled: true - path: / + path: /health initialDelaySeconds: 30 timeoutSeconds: 10 periodSeconds: 10