Skip to content

Commit

Permalink
Fix k8s permissions (#133)
Browse files Browse the repository at this point in the history
* Fix k8s permissions

* fix ci

* fix ci
  • Loading branch information
alecrajeev committed May 16, 2024
1 parent 2753f3f commit 7140e94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions examples/manifests/role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ rules:
resources:
- pods
verbs:
- list
- get
- update
- apiGroups:
Expand Down
2 changes: 1 addition & 1 deletion jsonnet/lib/thanos-receive-controller.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function(params) {
{
apiGroups: [''],
resources: ['pods'],
verbs: ['get', 'update'],
verbs: ['list', 'get', 'update'],
},
{
apiGroups: ['apps'],
Expand Down

0 comments on commit 7140e94

Please sign in to comment.