diff --git a/control-plane-operator/controllers/hostedcontrolplane/ocm/params.go b/control-plane-operator/controllers/hostedcontrolplane/ocm/params.go index dfb4ac52e0c0..12bf2abda954 100644 --- a/control-plane-operator/controllers/hostedcontrolplane/ocm/params.go +++ b/control-plane-operator/controllers/hostedcontrolplane/ocm/params.go @@ -75,7 +75,7 @@ func NewOpenShiftControllerManagerParams(hcp *hyperv1.HostedControlPlane, observ ocmContainerMain().Name: { ProbeHandler: corev1.ProbeHandler{ HTTPGet: &corev1.HTTPGetAction{ - Path: "/healthz/ready", + Path: "/healthz", Port: intstr.FromInt(int(servingPort)), Scheme: corev1.URISchemeHTTPS, }, diff --git a/control-plane-operator/controllers/hostedcontrolplane/routecm/params.go b/control-plane-operator/controllers/hostedcontrolplane/routecm/params.go index 838e95251d57..ddf18623f5ed 100644 --- a/control-plane-operator/controllers/hostedcontrolplane/routecm/params.go +++ b/control-plane-operator/controllers/hostedcontrolplane/routecm/params.go @@ -69,7 +69,7 @@ func NewOpenShiftRouteControllerManagerParams(hcp *hyperv1.HostedControlPlane, o routeOCMContainerMain().Name: { ProbeHandler: corev1.ProbeHandler{ HTTPGet: &corev1.HTTPGetAction{ - Path: "/healthz/ready", + Path: "/healthz", Port: intstr.FromInt(int(servingPort)), Scheme: corev1.URISchemeHTTPS, },