#!/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 org2 services to the "org2" namespace # export NAMESPACE=org2 # # CA # print "starting org2 CA" apply_template organizations/org2/org2-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 org2 orderers" print "starting org2 peers" apply_template organizations/org2/org2-peer1.yaml apply_template organizations/org2/org2-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 org2-peer-gateway" apply_template organizations/org2/org2-peer-gateway.yaml