Skip to content

Commit

Permalink
Fix app repository role (#383)
Browse files Browse the repository at this point in the history
The button `Refresh` of the app repositories view didn't work because of this error:

```
'events "artifactory.153c4d4c29911fd9" is forbidden: User "system:serviceaccount:kubeapps:apprepository-controller" cannot patch events in the namespace "kubeapps": Unknown user "system:serviceaccount:kubeapps:apprepository-controller"'
```

Adding the required permission.
  • Loading branch information
andresmgot authored and prydonius committed Jun 28, 2018
1 parent 3cddd41 commit 1bc8c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/apprepository.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ local labels = {
{
apiGroups: [""],
resources: ["events"],
verbs: ["create"],
verbs: ["create", "patch"],
},
{
apiGroups: ["batch"],
Expand Down

0 comments on commit 1bc8c39

Please sign in to comment.