34 lines
840 B
YAML
34 lines
840 B
YAML
#
|
|
# Copyright (c) 2019-2021 Red Hat, Inc.
|
|
# This program and the accompanying materials are made
|
|
# available under the terms of the Eclipse Public License 2.0
|
|
# which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
#
|
|
# SPDX-License-Identifier: EPL-2.0
|
|
#
|
|
# Contributors:
|
|
# Red Hat, Inc. - initial API and implementation
|
|
#
|
|
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: che-operator
|
|
namespace: system
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: che-operator
|
|
imagePullPolicy: Always
|
|
args:
|
|
- "--config=controller_manager_config.yaml"
|
|
volumeMounts:
|
|
- name: manager-config
|
|
mountPath: /controller_manager_config.yaml
|
|
subPath: controller_manager_config.yaml
|
|
volumes:
|
|
- name: manager-config
|
|
configMap:
|
|
name: manager-config
|