Skip to content

Commit

Permalink
update namespace permissions
Browse files Browse the repository at this point in the history
This is an attempt to prevent the namespace test from failing.
  • Loading branch information
mplsgrant committed Nov 20, 2024
1 parent e400b3d commit fef2e67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/charts/namespaces/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ roles:
- name: pod-viewer
rules:
- apiGroups: [""]
resources: ["pods", "services"]
resources: ["pods", "services", "configmaps"]
verbs: ["get", "list", "watch"]
- apiGroups: [""]
resources: ["pods/log", "pods/exec", "pods/attach", "pods/portforward"]
verbs: ["get"]
- apiGroups: [""]
resources: ["configmaps", "secrets"]
resources: ["secrets"]
verbs: ["get", "list"]
- apiGroups: [""]
resources: ["persistentvolumeclaims", "namespaces"]
Expand All @@ -34,7 +34,7 @@ roles:
verbs: ["get", "create"]
- apiGroups: [""]
resources: ["configmaps", "secrets", "serviceaccounts"]
verbs: ["get", "list", "create", "update"]
verbs: ["get", "list", "create", "update", "watch"]
- apiGroups: ["rbac.authorization.k8s.io"]
resources: ["roles", "rolebindings"]
verbs: ["get", "list", "create", "update"]
Expand Down

0 comments on commit fef2e67

Please sign in to comment.