mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-04 15:18:20 +00:00
32 lines
470 B
YAML
32 lines
470 B
YAML
|
|
apiVersion: authorization.openshift.io/v1
|
||
|
|
kind: Role
|
||
|
|
metadata:
|
||
|
|
name: test-role
|
||
|
|
rules:
|
||
|
|
- apiGroups:
|
||
|
|
- ""
|
||
|
|
resources:
|
||
|
|
- configmaps
|
||
|
|
- secrets
|
||
|
|
verbs:
|
||
|
|
- get
|
||
|
|
- list
|
||
|
|
- watch
|
||
|
|
|
||
|
|
---
|
||
|
|
apiVersion: authorization.openshift.io/v1
|
||
|
|
kind: RoleBinding
|
||
|
|
metadata:
|
||
|
|
name: test-role-binding
|
||
|
|
roleRef:
|
||
|
|
name: test-role
|
||
|
|
subjects:
|
||
|
|
- kind: ServiceAccount
|
||
|
|
name: test
|
||
|
|
|
||
|
|
---
|
||
|
|
apiVersion: project.openshift.io/v1
|
||
|
|
kind: Project
|
||
|
|
metadata:
|
||
|
|
name: test
|