You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by li...@apache.org on 2021/10/20 07:32:35 UTC

[skywalking-kubernetes] branch master updated: Fix missing `nodes` resource permission (#82)

This is an automated email from the ASF dual-hosted git repository.

liuhan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-kubernetes.git


The following commit(s) were added to refs/heads/master by this push:
     new 0f3ec68  Fix missing `nodes` resource permission (#82)
0f3ec68 is described below

commit 0f3ec68e5a7e1608cec8688716b848ed15e971e5
Author: mrproliu <74...@qq.com>
AuthorDate: Wed Oct 20 15:32:27 2021 +0800

    Fix missing `nodes` resource permission (#82)
---
 chart/skywalking/templates/oap-clusterrole.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chart/skywalking/templates/oap-clusterrole.yaml b/chart/skywalking/templates/oap-clusterrole.yaml
index 1f8810e..4adfc19 100644
--- a/chart/skywalking/templates/oap-clusterrole.yaml
+++ b/chart/skywalking/templates/oap-clusterrole.yaml
@@ -25,7 +25,7 @@ metadata:
     heritage: "{{ .Release.Service }}"
 rules:
 - apiGroups: [""]
-  resources: ["pods", "endpoints", "services"]
+  resources: ["pods", "endpoints", "services", "nodes"]
   verbs: ["get", "watch", "list"]
 - apiGroups: ["extensions"]
   resources: ["deployments", "replicasets"]