Merge pull request #3566 from fluxcd/rbac-edit-view

rbac: Add view and edit aggregated cluster roles
pull/3601/head
Stefan Prodan 2 years ago committed by GitHub
commit b445013d25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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