From c5ab3dd7d7e3d15d0539a5f1135a549e74de85ee Mon Sep 17 00:00:00 2001 From: Sridhar Gaddam Date: Fri, 20 Nov 2020 21:50:40 +0530 Subject: [PATCH] Include ClusterRole for routeagent to list nodes In the new event framework we use node listeners to support certain use-cases. Currently in helm, routeagent does not have that role, so e2e tests are failing. This PR enables it. Related to: https://github.com/submariner-io/submariner/issues/858 Signed-Off-by: Sridhar Gaddam --- submariner/templates/rbac.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submariner/templates/rbac.yaml b/submariner/templates/rbac.yaml index 30e66449..cfacc0af 100644 --- a/submariner/templates/rbac.yaml +++ b/submariner/templates/rbac.yaml @@ -69,7 +69,7 @@ metadata: rules: - apiGroups: [""] resources: ["nodes"] - verbs: ["get", "update"] + verbs: ["get", "list", "watch", "update"] --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding