From ab4893d29929f3d29931d9909c3744df3f1322ee Mon Sep 17 00:00:00 2001 From: Casey Davenport Date: Sat, 9 May 2026 20:05:19 -0700 Subject: [PATCH] guardian: probe paths follow shared health aggregator Companion to calico-private: voltronguardian moved off its bespoke /health stub to the shared health aggregator, which serves /liveness and /readiness instead. Update the deployment probes to match. --- pkg/render/guardian.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/render/guardian.go b/pkg/render/guardian.go index b4f247b7e9..0eb30b0110 100644 --- a/pkg/render/guardian.go +++ b/pkg/render/guardian.go @@ -504,7 +504,7 @@ func (c *GuardianComponent) container() []corev1.Container { LivenessProbe: &corev1.Probe{ ProbeHandler: corev1.ProbeHandler{ HTTPGet: &corev1.HTTPGetAction{ - Path: "/health", + Path: "/liveness", Port: intstr.FromInt(9080), }, }, @@ -513,7 +513,7 @@ func (c *GuardianComponent) container() []corev1.Container { ReadinessProbe: &corev1.Probe{ ProbeHandler: corev1.ProbeHandler{ HTTPGet: &corev1.HTTPGetAction{ - Path: "/health", + Path: "/readiness", Port: intstr.FromInt(9080), }, },