From ca4832bcc3459c758fe7f223b6838fe57897f7bc Mon Sep 17 00:00:00 2001 From: Hugh Hackman Date: Sat, 21 Mar 2026 20:10:32 +0000 Subject: [PATCH] fix: add watch verb to services/serviceaccounts/configmaps/secrets in RBAC Helm --wait requires watch on these resources to track rollout readiness. Co-Authored-By: Claude Sonnet 4.6 --- deployment/e2e-ci-runner-rbac.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/e2e-ci-runner-rbac.yaml b/deployment/e2e-ci-runner-rbac.yaml index e6f32e2..ea93cff 100644 --- a/deployment/e2e-ci-runner-rbac.yaml +++ b/deployment/e2e-ci-runner-rbac.yaml @@ -22,7 +22,7 @@ rules: verbs: ["get", "list", "create", "update", "patch", "delete", "watch"] - apiGroups: [""] resources: ["services", "serviceaccounts", "configmaps", "secrets"] - verbs: ["get", "list", "create", "update", "patch", "delete"] + verbs: ["get", "list", "watch", "create", "update", "patch", "delete"] - apiGroups: [""] resources: ["pods"] verbs: ["get", "list", "watch"]