1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-22 14:59:41 +02:00

fix standard user not able to access nodes stats (#5951)

This commit is contained in:
Richard Wei 2021-10-21 11:56:21 +13:00 committed by GitHub
parent 988efe6b02
commit b5ec8c52fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@ import (
func getPortainerUserDefaultPolicies() []rbacv1.PolicyRule { func getPortainerUserDefaultPolicies() []rbacv1.PolicyRule {
return []rbacv1.PolicyRule{ return []rbacv1.PolicyRule{
{ {
Verbs: []string{"list"}, Verbs: []string{"list", "get"},
Resources: []string{"namespaces", "nodes"}, Resources: []string{"namespaces", "nodes"},
APIGroups: []string{""}, APIGroups: []string{""},
}, },