From 93fb754f4a6716102fdfa88243900db3c74ac19e Mon Sep 17 00:00:00 2001 From: Mark Phelps <209477+markphelps@users.noreply.github.com> Date: Tue, 6 Sep 2022 14:57:53 +0000 Subject: [PATCH] fix health/readiness checks (#3) * fix health/readiness checks * version bump --- charts/flipt/Chart.yaml | 2 +- charts/flipt/templates/deployment.yaml | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/charts/flipt/Chart.yaml b/charts/flipt/Chart.yaml index 0b329e9..a2a7555 100644 --- a/charts/flipt/Chart.yaml +++ b/charts/flipt/Chart.yaml @@ -3,7 +3,7 @@ name: flipt home: https://flipt.io description: Flipt is an open source, self-hosted feature flag solution. type: application -version: 0.6.0 +version: 0.7.0 appVersion: "v1.10.1" maintainers: - name: Flipt diff --git a/charts/flipt/templates/deployment.yaml b/charts/flipt/templates/deployment.yaml index 4f072ce..e3b1f24 100644 --- a/charts/flipt/templates/deployment.yaml +++ b/charts/flipt/templates/deployment.yaml @@ -51,12 +51,14 @@ spec: {{- end }} livenessProbe: httpGet: - path: / + path: /health port: http + initialDelaySeconds: 3 readinessProbe: httpGet: - path: / + path: /health port: http + initialDelaySeconds: 3 resources: {{- toYaml .Values.resources | nindent 12 }} volumes: