From 6e85afd56f52d06d9cfe2450ce9ea3bbaea8ec80 Mon Sep 17 00:00:00 2001 From: incubator4 Date: Thu, 15 Aug 2024 17:31:24 +0800 Subject: [PATCH] chore(rsshub): use `/healthz` as health check endpoint --- charts/rsshub/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/rsshub/templates/deployment.yaml b/charts/rsshub/templates/deployment.yaml index 885626e..ddddd89 100644 --- a/charts/rsshub/templates/deployment.yaml +++ b/charts/rsshub/templates/deployment.yaml @@ -57,14 +57,14 @@ spec: {{- end }} livenessProbe: httpGet: - path: /metrics + path: /healthz port: http initialDelaySeconds: 30 timeoutSeconds: 5 periodSeconds: 15 readinessProbe: httpGet: - path: /metrics + path: /healthz port: http initialDelaySeconds: 10 timeoutSeconds: 5