From e6a69904f94c0bba98da6dd228c9aef0defbb3c0 Mon Sep 17 00:00:00 2001 From: Anthony Floeder Date: Mon, 16 Mar 2026 14:09:25 -0500 Subject: [PATCH] Fix kube-rbac-proxy image registry: gcr.io -> registry.k8s.io Google deprecated gcr.io and removed the kube-rbac-proxy image. Update to use the same image from registry.k8s.io which is the official replacement registry. Signed-off-by: Anthony Floeder --- config/default/manager_auth_proxy_patch.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/default/manager_auth_proxy_patch.yaml b/config/default/manager_auth_proxy_patch.yaml index fb318f8f..35d42db0 100644 --- a/config/default/manager_auth_proxy_patch.yaml +++ b/config/default/manager_auth_proxy_patch.yaml @@ -10,7 +10,7 @@ spec: spec: containers: - name: kube-rbac-proxy - image: gcr.io/kubebuilder/kube-rbac-proxy:v0.14.1 + image: registry.k8s.io/kubebuilder/kube-rbac-proxy:v0.14.1 args: - "--secure-listen-address=0.0.0.0:8443" - "--upstream=http://127.0.0.1:8080/"