mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-25 19:15:10 +00:00
54 lines
No EOL
1.8 KiB
Bash
Executable file
54 lines
No EOL
1.8 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 org0 services to the "org0" namespace
|
|
#
|
|
export NAMESPACE=org0
|
|
|
|
#
|
|
# As the consortium organizer, the org0 will use osnadmin to join the ordering
|
|
# nodes to the channel.
|
|
#
|
|
function join_orderer() {
|
|
local orderer=$1
|
|
print "joining orderer $orderer to $CHANNEL_NAME"
|
|
|
|
# orderer URL and TLS certificate:
|
|
local orderer_admin_endpoint=org0-${orderer}-admin.org0.localho.st
|
|
local ca_file=channel-config/organizations/ordererOrganizations/org0.localho.st/orderers/${orderer}/tls/signcerts/tls-cert.pem
|
|
|
|
# mTLS client key pair enrolled the org0 TLS CA:
|
|
local client_cert=organizations/org0/enrollments/org0admin/tls/signcerts/cert.pem
|
|
local client_key=organizations/org0/enrollments/org0admin/tls/keystore/key.pem
|
|
|
|
osnadmin channel join \
|
|
--orderer-address $orderer_admin_endpoint \
|
|
--ca-file $ca_file \
|
|
--client-cert $client_cert \
|
|
--client-key $client_key \
|
|
--channelID $CHANNEL_NAME \
|
|
--config-block channel-config/${CHANNEL_NAME}_genesis_block.pb
|
|
}
|
|
|
|
join_orderer orderernode1
|
|
join_orderer orderernode2
|
|
join_orderer orderernode3 |