fix(rbac): grant woodpecker-deployer access to statefulsets
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

The CI deploy step runs `kubectl set image statefulset/claudebox` but
the woodpecker-deployer Role only included `deployments`. Add
`statefulsets` to the allowed resources.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jordan 2026-02-09 19:35:28 -07:00
parent 9226454b85
commit d63f827713

View File

@ -63,7 +63,7 @@ metadata:
app.kubernetes.io/part-of: rdev
rules:
- apiGroups: ["apps"]
resources: ["deployments"]
resources: ["deployments", "statefulsets"]
verbs: ["get", "list", "patch", "watch"]
---
apiVersion: rbac.authorization.k8s.io/v1