From de6c46848e918dd9bf936000f75236025cf5dd25 Mon Sep 17 00:00:00 2001 From: Thumbscrew Date: Mon, 27 Mar 2023 22:22:10 +0100 Subject: [PATCH] update health check path --- charts/freshrss/Chart.yaml | 2 +- charts/freshrss/templates/deployment.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/freshrss/Chart.yaml b/charts/freshrss/Chart.yaml index dac81e7..ce0f9be 100644 --- a/charts/freshrss/Chart.yaml +++ b/charts/freshrss/Chart.yaml @@ -23,7 +23,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.3.0 +version: 0.4.0 # 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/freshrss/templates/deployment.yaml b/charts/freshrss/templates/deployment.yaml index 065dc47..e0750b5 100644 --- a/charts/freshrss/templates/deployment.yaml +++ b/charts/freshrss/templates/deployment.yaml @@ -65,12 +65,12 @@ spec: {{- end }} livenessProbe: httpGet: - path: / + path: /i/ port: http initialDelaySeconds: 30 readinessProbe: httpGet: - path: / + path: /i/ port: http resources: {{- toYaml .Values.resources | nindent 12 }}