From cb8bea12bd8c39813b1e74df19ce48f5e8fdeba8 Mon Sep 17 00:00:00 2001 From: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Date: Mon, 27 Mar 2023 00:46:23 +0300 Subject: [PATCH] Use a noauth endpoint for syncthing probe (#1057) --- library/ix-dev/charts/syncthing/Chart.yaml | 2 +- library/ix-dev/charts/syncthing/templates/deployment.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/library/ix-dev/charts/syncthing/Chart.yaml b/library/ix-dev/charts/syncthing/Chart.yaml index febf37fa90..df8db8d049 100644 --- a/library/ix-dev/charts/syncthing/Chart.yaml +++ b/library/ix-dev/charts/syncthing/Chart.yaml @@ -3,7 +3,7 @@ description: Syncthing is a continuous file synchronization program. annotations: title: Syncthing type: application -version: 1.0.19 +version: 1.0.20 apiVersion: v2 appVersion: '1.23.2' kubeVersion: '>=1.16.0-0' diff --git a/library/ix-dev/charts/syncthing/templates/deployment.yaml b/library/ix-dev/charts/syncthing/templates/deployment.yaml index 43c0a48d2d..916ed3020f 100644 --- a/library/ix-dev/charts/syncthing/templates/deployment.yaml +++ b/library/ix-dev/charts/syncthing/templates/deployment.yaml @@ -49,7 +49,7 @@ spec: protocol: UDP readinessProbe: httpGet: - path: / + path: /rest/noauth/health port: 8384 initialDelaySeconds: 10 periodSeconds: 10 @@ -58,7 +58,7 @@ spec: successThreshold: 2 livenessProbe: httpGet: - path: / + path: /rest/noauth/health port: 8384 initialDelaySeconds: 10 periodSeconds: 10 @@ -67,7 +67,7 @@ spec: successThreshold: 1 startupProbe: httpGet: - path: / + path: /rest/noauth/health port: 8384 initialDelaySeconds: 10 periodSeconds: 5