Path: blob/main/components/ws-manager-mk2/config/rbac/role.yaml
2499 views
# Copyright (c) 2022 Gitpod GmbH. All rights reserved.1# Licensed under the GNU Affero General Public License (AGPL).2# See License-AGPL.txt in the project root for license information.34---5apiVersion: rbac.authorization.k8s.io/v16kind: ClusterRole7metadata:8creationTimestamp: null9name: manager-role10rules:11- apiGroups:12- ""13resources:14- pod15verbs:16- create17- delete18- get19- list20- patch21- update22- watch23- apiGroups:24- ""25resources:26- pod/status27verbs:28- get29- apiGroups:30- workspace.gitpod.io31resources:32- workspaces33verbs:34- create35- delete36- get37- list38- patch39- update40- watch41- apiGroups:42- workspace.gitpod.io43resources:44- workspaces/finalizers45verbs:46- update47- apiGroups:48- workspace.gitpod.io49resources:50- workspaces/status51verbs:52- get53- patch54- update555657