mirror of https://github.com/fluxcd/flux2.git
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			22 lines
		
	
	
		
			519 B
		
	
	
	
		
			YAML
		
	
			
		
		
	
	
			22 lines
		
	
	
		
			519 B
		
	
	
	
		
			YAML
		
	
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
 |