From b08b8a42f14a574442231c36d0985c317f3f7b75 Mon Sep 17 00:00:00 2001 From: Zoran Zorica Date: Fri, 17 May 2024 16:39:14 +0200 Subject: [PATCH] fix(freescout): add init delay on liveness and readiness probe --- charts/freescout/Chart.yaml | 2 +- charts/freescout/templates/deployment.yaml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/charts/freescout/Chart.yaml b/charts/freescout/Chart.yaml index 040c432..4dc1487 100644 --- a/charts/freescout/Chart.yaml +++ b/charts/freescout/Chart.yaml @@ -18,7 +18,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.2.0 +version: 0.2.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/freescout/templates/deployment.yaml b/charts/freescout/templates/deployment.yaml index 91d6bf7..6587878 100644 --- a/charts/freescout/templates/deployment.yaml +++ b/charts/freescout/templates/deployment.yaml @@ -114,6 +114,7 @@ spec: containerPort: 80 protocol: TCP livenessProbe: + initialDelaySeconds: 20 httpGet: path: /login port: http @@ -123,6 +124,7 @@ spec: value: https {{- end }} readinessProbe: + initialDelaySeconds: 20 httpGet: path: /login port: http