aboutsummaryrefslogtreecommitdiff
path: root/kubernetes/traefik/01-role-binding.yml
blob: e5117f9bc1f4176ee405ef7bf7b05e77c94baf9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
  name: traefik-role-binding

roleRef:
  apiGroup: rbac.authorization.k8s.io
  kind: ClusterRole
  name: traefik-role
subjects:
  - kind: ServiceAccount
    name: traefik-account
    namespace: default
...