mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-23 01:55:10 +00:00
66 lines
1.8 KiB
YAML
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
|
|
|