Skip to content

Commit

Permalink
chore(helm): stop requesting superfluous permissions
Browse files Browse the repository at this point in the history
Signed-off-by: Olivier Léobal <[email protected]>
  • Loading branch information
oleobal committed Jul 17, 2023
1 parent e295624 commit 2992f4b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
5 changes: 5 additions & 0 deletions charts/substra-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [22.5.3] - 2023-07-17

### Changed
- Created role no longer request superfluous permissions

## [22.5.2] - 2023-06-27

### Changed
Expand Down
2 changes: 1 addition & 1 deletion charts/substra-backend/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: substra-backend
home: https://github.com/Substra
version: 22.5.2
version: 22.5.3
appVersion: 0.39.0
kubeVersion: ">= 1.19.0-0"
description: Main package for Substra
Expand Down
7 changes: 5 additions & 2 deletions charts/substra-backend/templates/rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@ rules:
resources: ["secrets"]
verbs: ["get", "watch", "list", "create", "update", "patch"]
- apiGroups: [""]
resources: ["pods", "pods/log", "pods/status", "pods/exec"]
resources: ["pods/log", "pods/status"]
verbs: ["get", "list", "watch"]
- apiGroups: [""]
resources: ["pods", "pods/exec"]
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]
- apiGroups: ["batch", "extensions"]
- apiGroups: ["batch"]
resources: ["jobs"]
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]
- apiGroups: [""]
Expand Down

0 comments on commit 2992f4b

Please sign in to comment.