Skip to content

Commit

Permalink
fix: Add permission to delete juypter file share PVCs
Browse files Browse the repository at this point in the history
The deletion of Jupyter file-shares failed because of insufficient
permissions in the sessions namespace.
This adds the "delete" verb to the "pvc" resource in the backend
serviceaccount.
  • Loading branch information
MoritzWeber0 committed Sep 6, 2023
1 parent 1e00fc8 commit 95fd23a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helm/templates/backend/backend.serviceaccount.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ rules:
verbs: ["get", "create", "delete"]
- apiGroups: [""]
resources: ["persistentvolumeclaims"]
verbs: ["get", "create"]
verbs: ["get", "create", "delete"]
- apiGroups: [""]
resources: ["pods", "pods/log", "events"]
verbs: ["get", "list"]
Expand Down

0 comments on commit 95fd23a

Please sign in to comment.