mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-23 01:55:10 +00:00
65 lines
No EOL
1.7 KiB
Bash
Executable file
65 lines
No EOL
1.7 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Copyright contributors to the Hyperledgendary Kubernetes Test Network 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.
|
|
#
|
|
set -euo pipefail
|
|
. scripts/utils.sh
|
|
|
|
#
|
|
# Bind all org1 services to the "org1" namespace
|
|
#
|
|
export NAMESPACE=org1
|
|
|
|
#
|
|
# CA
|
|
#
|
|
print "starting org1 CA"
|
|
|
|
apply_template organizations/org1/org1-ca.yaml
|
|
sleep 5
|
|
wait_for ibpca ca
|
|
|
|
# Retrieve the org CA certificate for the bootstrap enrollment of peers/orderers.
|
|
# This value will be substituted from the environment into the node CRDs.
|
|
export CA_CERT=$(connection_profile_cert ca .tls.cert)
|
|
|
|
|
|
#
|
|
# Network nodes
|
|
#
|
|
print "starting org1 orderers"
|
|
|
|
print "starting org1 peers"
|
|
|
|
apply_template organizations/org1/org1-peer1.yaml
|
|
apply_template organizations/org1/org1-peer2.yaml
|
|
sleep 5
|
|
|
|
wait_for ibppeer peer1
|
|
wait_for ibppeer peer2
|
|
|
|
|
|
|
|
#
|
|
# Deploy a load-balanced gateway service URL fronting the org's peer nodes.
|
|
# When submitting transactions through the gateway, the gateway peers will
|
|
# distribute transactions across the peers in the network, maintaining a
|
|
# balanced ledger height.
|
|
#
|
|
print "creating gateway service alias org1-peer-gateway"
|
|
|
|
apply_template organizations/org1/org1-peer-gateway.yaml |