mirror of
https://github.com/pawelmalak/flame.git
synced 2024-12-20 16:51:47 +03:00
27 lines
476 B
YAML
27 lines
476 B
YAML
|
---
|
||
|
apiVersion: v1
|
||
|
kind: ServiceAccount
|
||
|
metadata:
|
||
|
name: flame
|
||
|
---
|
||
|
kind: ClusterRole
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
metadata:
|
||
|
name: flame
|
||
|
rules:
|
||
|
- apiGroups: ["networking.k8s.io"]
|
||
|
resources: ["ingresses"]
|
||
|
verbs: ["get", "list", "watch"]
|
||
|
---
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
kind: ClusterRoleBinding
|
||
|
metadata:
|
||
|
name: flame
|
||
|
subjects:
|
||
|
- kind: ServiceAccount
|
||
|
name: flame
|
||
|
roleRef:
|
||
|
apiGroup: rbac.authorization.k8s.io
|
||
|
kind: ClusterRole
|
||
|
name: flame
|