65 lines
949 B
YAML
65 lines
949 B
YAML
|
apiVersion: rbac.authorization.k8s.io/v1beta1
|
||
|
kind: ClusterRole
|
||
|
metadata:
|
||
|
name: agola
|
||
|
rules:
|
||
|
- apiGroups:
|
||
|
- ""
|
||
|
resources:
|
||
|
- nodes
|
||
|
verbs:
|
||
|
- "*"
|
||
|
|
||
|
---
|
||
|
|
||
|
apiVersion: rbac.authorization.k8s.io/v1beta1
|
||
|
kind: Role
|
||
|
metadata:
|
||
|
name: agola
|
||
|
namespace: default
|
||
|
rules:
|
||
|
- apiGroups:
|
||
|
- ""
|
||
|
- "coordination.k8s.io"
|
||
|
resources:
|
||
|
- nodes
|
||
|
- pods
|
||
|
- pods/exec
|
||
|
- configmaps
|
||
|
- leases
|
||
|
- secrets
|
||
|
verbs:
|
||
|
- "*"
|
||
|
|
||
|
---
|
||
|
|
||
|
apiVersion: rbac.authorization.k8s.io/v1beta1
|
||
|
kind: RoleBinding
|
||
|
metadata:
|
||
|
name: agola
|
||
|
namespace: default
|
||
|
roleRef:
|
||
|
apiGroup: rbac.authorization.k8s.io
|
||
|
kind: Role
|
||
|
name: agola
|
||
|
subjects:
|
||
|
- kind: ServiceAccount
|
||
|
name: default
|
||
|
namespace: default
|
||
|
|
||
|
---
|
||
|
|
||
|
apiVersion: rbac.authorization.k8s.io/v1beta1
|
||
|
kind: ClusterRoleBinding
|
||
|
metadata:
|
||
|
name: agola
|
||
|
namespace: default
|
||
|
roleRef:
|
||
|
apiGroup: rbac.authorization.k8s.io
|
||
|
kind: ClusterRole
|
||
|
name: agola
|
||
|
subjects:
|
||
|
- kind: ServiceAccount
|
||
|
name: default
|
||
|
namespace: default
|