mirror of https://github.com/Squidex/squidex.git
7 changed files with 31 additions and 2 deletions
Binary file not shown.
Binary file not shown.
@ -0,0 +1,21 @@ |
|||
kind: Role |
|||
apiVersion: rbac.authorization.k8s.io/v1 |
|||
metadata: |
|||
name: pod-reader |
|||
rules: |
|||
- apiGroups: [ "" ] |
|||
resources: ["pods"] |
|||
verbs: ["get", "watch", "list"] |
|||
--- |
|||
kind: RoleBinding |
|||
apiVersion: rbac.authorization.k8s.io/v1 |
|||
metadata: |
|||
name: pod-reader-binding |
|||
subjects: |
|||
- kind: ServiceAccount |
|||
name: default |
|||
apiGroup: '' |
|||
roleRef: |
|||
kind: Role |
|||
name: pod-reader |
|||
apiGroup: '' |
|||
Loading…
Reference in new issue