From b4d97fdf394c747e8a9fa64ba88887f930ee60bf Mon Sep 17 00:00:00 2001 From: Michael Guarino Date: Sun, 19 Apr 2026 00:12:39 +0000 Subject: [PATCH] Fix readiness probe to use /readyz endpoint The readiness probe in the Helm chart was incorrectly configured to use /healthz instead of /readyz. The application code (cmd/agent/kubernetes.go) registers the readiness check at /readyz, so the probe must match this endpoint. --- charts/deployment-operator/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/deployment-operator/values.yaml b/charts/deployment-operator/values.yaml index 17080b37e..797b4a2ad 100644 --- a/charts/deployment-operator/values.yaml +++ b/charts/deployment-operator/values.yaml @@ -37,7 +37,7 @@ livenessProbe: readinessProbe: httpGet: - path: /healthz + path: /readyz port: http initialDelaySeconds: 15 periodSeconds: 10