Skip to content

Commit 2289cd1

Browse files
committed
namespaces: allow SA to update and patch
Service Accounts need to be able to patch pods and also update configmaps and secrets.
1 parent e271751 commit 2289cd1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

resources/charts/namespaces/values.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,15 @@ roles:
2626
- apiGroups: [""]
2727
resources: ["pods", "services"]
2828
verbs: ["get", "list", "watch", "create", "delete", "update"]
29+
- apiGroups: [""]
30+
resources: ["pods"]
31+
verbs: ["get", "list", "watch", "create", "delete", "update", "patch"]
2932
- apiGroups: [""]
3033
resources: ["pods/log", "pods/exec", "pods/attach", "pods/portforward"]
3134
verbs: ["get", "create"]
3235
- apiGroups: [""]
3336
resources: ["configmaps", "secrets"]
34-
verbs: ["get", "list", "create"]
37+
verbs: ["get", "list", "create", "update"]
3538
- apiGroups: [""]
3639
resources: ["persistentvolumeclaims", "namespaces"]
3740
verbs: ["get", "list"]

0 commit comments

Comments
 (0)