Path: blob/main/components/ws-manager-mk2/config/manager/manager.yaml
2501 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.34apiVersion: v15kind: Namespace6metadata:7labels:8control-plane: controller-manager9name: system10---11apiVersion: apps/v112kind: Deployment13metadata:14name: controller-manager15namespace: system16labels:17control-plane: controller-manager18spec:19selector:20matchLabels:21control-plane: controller-manager22replicas: 123template:24metadata:25annotations:26kubectl.kubernetes.io/default-container: manager27labels:28control-plane: controller-manager29spec:30securityContext:31runAsNonRoot: true32containers:33- command:34- /manager35image: controller:latest36name: manager37securityContext:38allowPrivilegeEscalation: false39livenessProbe:40httpGet:41path: /healthz42port: 808143initialDelaySeconds: 1544periodSeconds: 2045readinessProbe:46httpGet:47path: /readyz48port: 808149initialDelaySeconds: 550periodSeconds: 1051resources:52limits:53cpu: 500m54memory: 128Mi55requests:56cpu: 10m57memory: 64Mi58serviceAccountName: controller-manager59terminationGracePeriodSeconds: 10606162