From 68b62425d74792fae6ba88273b9193c9f3389a65 Mon Sep 17 00:00:00 2001 From: Artyom Lukianov Date: Sun, 1 Sep 2019 17:42:51 +0300 Subject: [PATCH] Add get, list and watch nodes permissions to MRO --- pkg/operator/components/rbac.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pkg/operator/components/rbac.go b/pkg/operator/components/rbac.go index 4ec598d8..d918bc9c 100644 --- a/pkg/operator/components/rbac.go +++ b/pkg/operator/components/rbac.go @@ -261,6 +261,19 @@ var ( "watch", }, }, + { + APIGroups: []string{ + "", + }, + Resources: []string{ + "nodes", + }, + Verbs: []string{ + "get", + "list", + "watch", + }, + }, { APIGroups: []string{ "",