Skip to content

Commit

Permalink
Added support for int-test operator
Browse files Browse the repository at this point in the history
Signed-off-by: Blake Devcich <[email protected]>
  • Loading branch information
bdevcich committed Oct 10, 2023
1 parent 6f09467 commit 06dfa87
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
26 changes: 26 additions & 0 deletions config/rbac/role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,32 @@ rules:
- patch
- update
- watch
- apiGroups:
- nnf.cray.hpe.com
resources:
- inttesthelpers
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- nnf.cray.hpe.com
resources:
- inttesthelpers/finalizers
verbs:
- update
- apiGroups:
- nnf.cray.hpe.com
resources:
- inttesthelpers/status
verbs:
- get
- patch
- update
- apiGroups:
- nnf.cray.hpe.com
resources:
Expand Down
3 changes: 3 additions & 0 deletions controllers/datamovement_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ func (i *invalidError) Unwrap() error { return i.err }
//+kubebuilder:rbac:groups=nnf.cray.hpe.com,resources=nnfdatamovements/status,verbs=get;update;patch
//+kubebuilder:rbac:groups=nnf.cray.hpe.com,resources=nnfdatamovements/finalizers,verbs=update
//+kubebuilder:rbac:groups=nnf.cray.hpe.com,resources=nnfstorages,verbs=get;list;watch
//+kubebuilder:rbac:groups=nnf.cray.hpe.com,resources=inttesthelpers,verbs=get;list;watch;create;update;patch;delete
//+kubebuilder:rbac:groups=nnf.cray.hpe.com,resources=inttesthelpers/status,verbs=get;update;patch
//+kubebuilder:rbac:groups=nnf.cray.hpe.com,resources=inttesthelpers/finalizers,verbs=update
//+kubebuilder:rbac:groups=dataworkflowservices.github.io,resources=clientmounts,verbs=get;list
//+kubebuilder:rbac:groups=dataworkflowservices.github.io,resources=clientmounts/status,verbs=get;list
//+kubebuilder:rbac:groups=lus.cray.hpe.com,resources=lustrefilesystems,verbs=get;list;watch
Expand Down

0 comments on commit 06dfa87

Please sign in to comment.