Skip to content

Commit 22ada29

Browse files
authored
fix(tor-controller): repoint kube-rbac-proxy after gcr.io takedown (#7)
## Summary Upstream tor-controller (`tor-controller-0.1.17`) pins `gcr.io/kubebuilder/kube-rbac-proxy:v0.8.0`, which Google removed from gcr.io. The sidecar fails with \`ImagePullBackOff\` and \`gitops-operators\` stays Progressing waiting for the Deployment to go Healthy. Override the image via kustomize to the maintained brancz fork at v0.18.0. ## Test plan - [x] Live cluster: \`kubectl set image\` to the new ref makes the Deployment Healthy - [ ] After merge: \`gitops-operators\` Application reaches Synced + Healthy 🤖 Generated with [Claude Code](https://claude.com/claude-code)
1 parent 756bff4 commit 22ada29

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

operators/tor-controller/kustomization.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ resources:
99
# Override namespace from tor-controller-system to tor-controller
1010
namespace: tor-controller
1111

12+
# Upstream pins gcr.io/kubebuilder/kube-rbac-proxy which Google removed; re-point
13+
# to the maintained brancz fork.
14+
images:
15+
- name: gcr.io/kubebuilder/kube-rbac-proxy
16+
newName: quay.io/brancz/kube-rbac-proxy
17+
newTag: v0.18.0
18+
1219
patches:
1320
# Fix namespace references in ClusterRoleBinding
1421
- patch: |

0 commit comments

Comments
 (0)