From e491856a473905b680a5218a64f00f2a3ec37423 Mon Sep 17 00:00:00 2001 From: Lubomir Dolezal <lubomir.bucek@eox.at> Date: Tue, 28 Jun 2022 14:23:36 +0200 Subject: [PATCH] update livenessProbe --- charts/vs-renderer/values.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/charts/vs-renderer/values.yaml b/charts/vs-renderer/values.yaml index 9f3c459..195c862 100644 --- a/charts/vs-renderer/values.yaml +++ b/charts/vs-renderer/values.yaml @@ -8,10 +8,11 @@ image: livenessProbe: failureThreshold: 3 - httpGet: - path: / - port: 80 - scheme: HTTP + exec: + command: + - /bin/bash + - -c + - "timeout 1 bash -c '</dev/tcp/localhost/80' 2>/dev/null" periodSeconds: 10 successThreshold: 1 timeoutSeconds: 1 -- GitLab