rbac: Add view and edit aggregated cluster roles

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
pull/3566/head
Stefan Prodan 2 years ago
parent 3c14f8beb0
commit 65055c273f
No known key found for this signature in database
GPG Key ID: 3299AEB0E4085BAF

@ -6,7 +6,7 @@ resources:
- account.yaml
transformers:
- labels.yaml
patchesJson6902:
patches:
- target:
group: apps
version: v1

@ -6,7 +6,7 @@ resources:
- account.yaml
transformers:
- labels.yaml
patchesJson6902:
patches:
- target:
group: apps
version: v1

@ -6,7 +6,7 @@ resources:
- account.yaml
transformers:
- labels.yaml
patchesJson6902:
patches:
- target:
group: apps
version: v1

@ -6,7 +6,7 @@ resources:
- account.yaml
transformers:
- labels.yaml
patchesJson6902:
patches:
- target:
group: apps
version: v1

@ -6,7 +6,7 @@ resources:
- account.yaml
transformers:
- labels.yaml
patchesJson6902:
patches:
- target:
group: apps
version: v1

@ -6,7 +6,7 @@ resources:
- account.yaml
transformers:
- labels.yaml
patchesJson6902:
patches:
- target:
group: apps
version: v1

@ -0,0 +1,21 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: flux-edit
labels:
rbac.authorization.k8s.io/aggregate-to-edit: "true"
rbac.authorization.k8s.io/aggregate-to-admin: "true"
rules:
- apiGroups:
- notification.toolkit.fluxcd.io
- source.toolkit.fluxcd.io
- helm.toolkit.fluxcd.io
- image.toolkit.fluxcd.io
- kustomize.toolkit.fluxcd.io
resources: ["*"]
verbs:
- create
- delete
- deletecollection
- patch
- update

@ -3,3 +3,5 @@ kind: Kustomization
resources:
- controller.yaml
- reconciler.yaml
- edit.yaml
- view.yaml

@ -0,0 +1,20 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: flux-view
labels:
rbac.authorization.k8s.io/aggregate-to-admin: "true"
rbac.authorization.k8s.io/aggregate-to-edit: "true"
rbac.authorization.k8s.io/aggregate-to-view: "true"
rules:
- apiGroups:
- notification.toolkit.fluxcd.io
- source.toolkit.fluxcd.io
- helm.toolkit.fluxcd.io
- image.toolkit.fluxcd.io
- kustomize.toolkit.fluxcd.io
resources: ["*"]
verbs:
- get
- list
- watch
Loading…
Cancel
Save