added linkerd ingress operator

This commit is contained in:
ston1th 2019-08-16 13:36:00 +02:00
commit fe1523102d
6 changed files with 128 additions and 0 deletions

View file

@ -0,0 +1,29 @@
apiVersion: v1
kind: ServiceAccount
metadata:
name: linkerd-ingress-operator
namespace: linkerd
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: linkerd-ingress-operator
rules:
- apiGroups:
- extensions
resources:
- ingresses
verbs: ["get", "list", "watch", "update"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: linkerd-ingress-operator
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: linkerd-ingress-operator
subjects:
- kind: ServiceAccount
name: linkerd-ingress-operator
namespace: linkerd