Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/ws-manager-mk2/config/default/manager_config_patch.yaml
2500 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
apiVersion: apps/v1
6
kind: Deployment
7
metadata:
8
name: controller-manager
9
namespace: system
10
spec:
11
template:
12
spec:
13
containers:
14
- name: manager
15
args:
16
- "--config=controller_manager_config.yaml"
17
volumeMounts:
18
- name: manager-config
19
mountPath: /controller_manager_config.yaml
20
subPath: controller_manager_config.yaml
21
volumes:
22
- name: manager-config
23
configMap:
24
name: manager-config
25
26