From 0d1c44aa18ee00a39e45395a6662b19896246974 Mon Sep 17 00:00:00 2001 From: Julien Cabillot Date: Thu, 30 Dec 2021 16:05:21 -0500 Subject: [PATCH] fix: move to httpcheck probe --- charts/cv/Chart.yaml | 2 +- charts/cv/values.yaml | 22 ++++++++++++++++++++-- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/charts/cv/Chart.yaml b/charts/cv/Chart.yaml index 7daf3a3..d4c3f8a 100644 --- a/charts/cv/Chart.yaml +++ b/charts/cv/Chart.yaml @@ -9,7 +9,7 @@ appVersion: "latest" description: Helm chart for cv name: cv -version: 0.0.9 +version: 0.0.10 kubeVersion: ">=1.16.0-0" keywords: - cv diff --git a/charts/cv/values.yaml b/charts/cv/values.yaml index 119adc9..dd263d1 100644 --- a/charts/cv/values.yaml +++ b/charts/cv/values.yaml @@ -35,10 +35,28 @@ ingress: probes: liveness: enabled: true - initialDelaySeconds: 2 + custom: true + spec: + httpGet: + path: / + port: http + scheme: HTTP + timeoutSeconds: 1 + periodSeconds: 10 + successThreshold: 1 + failureThreshold: 3 readiness: enabled: true - initialDelaySeconds: 2 + custom: true + spec: + httpGet: + path: / + port: http + scheme: HTTP + timeoutSeconds: 1 + periodSeconds: 10 + successThreshold: 1 + failureThreshold: 3 startup: enabled: false