58 lines
		
	
	
		
			987 B
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			987 B
		
	
	
	
		
			YAML
		
	
	
	
| apiVersion: rbac.authorization.k8s.io/v1
 | |
| kind: ClusterRole
 | |
| metadata:
 | |
|   labels:
 | |
|     rbac.authorization.k8s.io/aggregate-to-admin: "true"
 | |
|   name: zalando-postgres-operator:users:admin
 | |
| rules:
 | |
| - apiGroups:
 | |
|   - acid.zalan.do
 | |
|   resources:
 | |
|   - postgresqls
 | |
|   - postgresqls/status
 | |
|   verbs:
 | |
|   - create
 | |
|   - delete
 | |
|   - deletecollection
 | |
|   - get
 | |
|   - list
 | |
|   - patch
 | |
|   - update
 | |
|   - watch
 | |
| 
 | |
| ---
 | |
| apiVersion: rbac.authorization.k8s.io/v1
 | |
| kind: ClusterRole
 | |
| metadata:
 | |
|   labels:
 | |
|     rbac.authorization.k8s.io/aggregate-to-edit: "true"
 | |
|   name: zalando-postgres-operator:users:edit
 | |
| rules:
 | |
| - apiGroups:
 | |
|   - acid.zalan.do
 | |
|   resources:
 | |
|   - postgresqls
 | |
|   verbs:
 | |
|   - create
 | |
|   - update
 | |
|   - patch
 | |
|   - delete
 | |
| 
 | |
| ---
 | |
| apiVersion: rbac.authorization.k8s.io/v1
 | |
| kind: ClusterRole
 | |
| metadata:
 | |
|   labels:
 | |
|     rbac.authorization.k8s.io/aggregate-to-view: "true"
 | |
|   name: zalando-postgres-operator:users:view
 | |
| rules:
 | |
| - apiGroups:
 | |
|   - acid.zalan.do
 | |
|   resources:
 | |
|   - postgresqls
 | |
|   - postgresqls/status
 | |
|   verbs:
 | |
|   - get
 | |
|   - list
 | |
|   - watch
 |