apps/external-dns/resources/rbac/cluster_role.yaml

17 lines
531 B
YAML
Raw Normal View History

2024-02-14 20:45:58 +00:00
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: external-dns
rules:
- apiGroups: [""]
2024-02-21 07:12:13 +00:00
resources: ["services","endpoints","pods", "namespaces"]
2024-02-14 20:45:58 +00:00
verbs: ["get","watch","list"]
- apiGroups: ["extensions","networking.k8s.io"]
resources: ["ingresses"]
verbs: ["get","watch","list"]
- apiGroups: [""]
resources: ["nodes"]
2024-02-21 07:12:13 +00:00
verbs: ["list", "watch"]
- apiGroups: ["gateway.networking.k8s.io"]
resources: ["gateways","httproutes","tlsroutes","tcproutes","udproutes"]
verbs: ["get","watch","list"]