From caf96d016ddc4f75213620260fea0dfea27e4c9e Mon Sep 17 00:00:00 2001 From: holysoles Date: Fri, 17 Jan 2025 18:03:27 -0600 Subject: [PATCH] feat(chart): use official health check endpoints for probes --- charts/pixelfed/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/pixelfed/values.yaml b/charts/pixelfed/values.yaml index 202b1a6..578b89b 100644 --- a/charts/pixelfed/values.yaml +++ b/charts/pixelfed/values.yaml @@ -87,12 +87,12 @@ resources: {} # This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ livenessProbe: httpGet: - path: / + path: /api/service/health-check port: http readinessProbe: httpGet: - path: / + path: /api/service/health-check port: http # This section is for setting up autoscaling more information can be found here: https://kubernetes.io/docs/concepts/workloads/autoscaling/