From d4fc130d96caab1ceee75b5428335397234520e9 Mon Sep 17 00:00:00 2001 From: Will Smith Date: Tue, 9 Apr 2024 12:20:13 -0700 Subject: [PATCH] Fix dashboard app graph not showing bug (#7478) # Description * Fixing dashboard app graph bug Note that this matches the deploy.yaml spec in the dashboard: https://github.com/radius-project/dashboard/blob/main/deploy/dashboard.yaml ## Type of change - This pull request fixes a bug in Radius and has an approved issue (issue link required). Fixes: https://github.com/radius-project/dashboard/issues/68 --------- Signed-off-by: willdavsmith --- deploy/Chart/templates/dashboard/rbac.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deploy/Chart/templates/dashboard/rbac.yaml b/deploy/Chart/templates/dashboard/rbac.yaml index 0dc6c3f237..cdabcc7c0b 100644 --- a/deploy/Chart/templates/dashboard/rbac.yaml +++ b/deploy/Chart/templates/dashboard/rbac.yaml @@ -10,7 +10,8 @@ metadata: rules: - apiGroups: ['api.ucp.dev'] resources: ['*'] - verbs: ['get', 'list'] + # dashboard needs get, list, and post privileges for api.ucp.dev + verbs: ['*'] --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding