Skip to content

Commit

Permalink
Merge pull request #739 from alexandrevilain/fix/rbac-delete-cm
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrevilain authored Jun 12, 2024
2 parents 6b858c0 + 58f0bbb commit 004f655
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions config/rbac/role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ rules:
- configmaps
verbs:
- create
- delete
- get
- list
- update
Expand Down
2 changes: 1 addition & 1 deletion controllers/temporalcluster_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ type TemporalClusterReconciler struct {
}

//+kubebuilder:rbac:groups="",resources=services,verbs=get;list;watch;create;update;delete
//+kubebuilder:rbac:groups="",resources=configmaps,verbs=get;list;watch;create;update
//+kubebuilder:rbac:groups="",resources=configmaps,verbs=get;list;watch;create;update;delete
//+kubebuilder:rbac:groups="",resources=secrets,verbs=get;list;watch;create;update;delete
//+kubebuilder:rbac:groups="",resources=events,verbs=get;create;patch
//+kubebuilder:rbac:groups="",resources=serviceaccounts,verbs=get;list;watch;create;update
Expand Down

0 comments on commit 004f655

Please sign in to comment.