From e10302519a996eb3580ca1e93c7e06d550003a3d Mon Sep 17 00:00:00 2001 From: Mike Camp Date: Wed, 26 Aug 2026 11:48:19 -0400 Subject: [PATCH] fix(admin-token-issuer-proxy): separate readiness from liveness Signed-off-by: Mike Camp --- deploy/helm/admin-token-issuer-proxy/chart/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/helm/admin-token-issuer-proxy/chart/values.yaml b/deploy/helm/admin-token-issuer-proxy/chart/values.yaml index da5d0b4da..eec5c2993 100644 --- a/deploy/helm/admin-token-issuer-proxy/chart/values.yaml +++ b/deploy/helm/admin-token-issuer-proxy/chart/values.yaml @@ -182,10 +182,10 @@ adminIssuerProxy: periodSeconds: 30 # Readiness probe configuration. Kubernetes uses this to determine if the pod should receive traffic. - # The probe checks the /healthz endpoint to verify the service is ready to handle requests. + # The probe checks /readyz so metadata initialization remains distinct from liveness. readinessProbe: httpGet: - path: /healthz + path: /readyz port: 8080 # Wait time before the first probe is executed after container start initialDelaySeconds: 5