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_editor_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 edit workspaces.
6
apiVersion: rbac.authorization.k8s.io/v1
7
kind: ClusterRole
8
metadata:
9
name: workspace-editor-role
10
rules:
11
- apiGroups:
12
- workspace.gitpod.io
13
resources:
14
- workspaces
15
verbs:
16
- create
17
- delete
18
- get
19
- list
20
- patch
21
- update
22
- watch
23
- apiGroups:
24
- workspace.gitpod.io
25
resources:
26
- workspaces/status
27
verbs:
28
- get
29
30