mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-25 19:07:18 +00:00
31 lines
470 B
YAML
31 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
|