Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/ws-manager-mk2/config/rbac/workspace_viewer_role.yaml
2499 views
1
# Copyright (c) 2022 Gitpod GmbH. All rights reserved.
2
# Licensed under the GNU Affero General Public License (AGPL).
3
# See License-AGPL.txt in the project root for license information.
4
5
# permissions for end users to view workspaces.
6
apiVersion: rbac.authorization.k8s.io/v1
7
kind: ClusterRole
8
metadata:
9
name: workspace-viewer-role
10
rules:
11
- apiGroups:
12
- workspace.gitpod.io
13
resources:
14
- workspaces
15
verbs:
16
- get
17
- list
18
- watch
19
- apiGroups:
20
- workspace.gitpod.io
21
resources:
22
- workspaces/status
23
verbs:
24
- get
25
26