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/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
---
6
apiVersion: rbac.authorization.k8s.io/v1
7
kind: ClusterRole
8
metadata:
9
creationTimestamp: null
10
name: manager-role
11
rules:
12
- apiGroups:
13
- ""
14
resources:
15
- pod
16
verbs:
17
- create
18
- delete
19
- get
20
- list
21
- patch
22
- update
23
- watch
24
- apiGroups:
25
- ""
26
resources:
27
- pod/status
28
verbs:
29
- get
30
- apiGroups:
31
- workspace.gitpod.io
32
resources:
33
- workspaces
34
verbs:
35
- create
36
- delete
37
- get
38
- list
39
- patch
40
- update
41
- watch
42
- apiGroups:
43
- workspace.gitpod.io
44
resources:
45
- workspaces/finalizers
46
verbs:
47
- update
48
- apiGroups:
49
- workspace.gitpod.io
50
resources:
51
- workspaces/status
52
verbs:
53
- get
54
- patch
55
- update
56
57