fabric-samples/test-network-k8s-operator/kind/operator/operator-manager.yaml
Josh Kneubuhl 05e4b03283 Move fabric-kube-test-network from Hyperledgendary -> samples
Signed-off-by: Josh Kneubuhl <jkneubuh@us.ibm.com>
2023-02-10 04:46:31 -05:00

66 lines
1.8 KiB
YAML

#
# Copyright contributors to the Hyperledger Fabric Operator project
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: fabric-operator
spec:
replicas: 1
selector:
matchLabels:
name: fabric-operator
template:
metadata:
labels:
name: fabric-operator
spec:
serviceAccountName: fabric-operator
# imagePullSecrets:
# - name: image-pull-secret
containers:
- name: fabric-operator
image: ${OPERATOR_IMAGE}
command:
- ibp-operator
# livenessProbe:
# tcpSocket:
# port: 8383
# initialDelaySeconds: 10
# timeoutSeconds: 5
# failureThreshold: 5
# readinessProbe:
# tcpSocket:
# port: 8383
# initialDelaySeconds: 10
# timeoutSeconds: 5
# periodSeconds: 5
env:
- name: WATCH_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: OPERATOR_NAME
value: "fabric-operator"
- name: CLUSTERTYPE
value: K8S