From 59f660d940f49a94dfc0f7583c6b015be75648ef Mon Sep 17 00:00:00 2001 From: stremovsky Date: Sun, 19 Dec 2021 15:44:01 +0200 Subject: [PATCH] fix live check url --- charts/databunker-demo/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/databunker-demo/templates/deployment.yaml b/charts/databunker-demo/templates/deployment.yaml index 24cc0e6..280eaf8 100644 --- a/charts/databunker-demo/templates/deployment.yaml +++ b/charts/databunker-demo/templates/deployment.yaml @@ -40,11 +40,11 @@ spec: protocol: TCP livenessProbe: httpGet: - path: / + path: /status port: http readinessProbe: httpGet: - path: / + path: /status port: http resources: {{- toYaml .Values.resources | nindent 12 }}