mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
Added a new option for creating channel: Running ./network.sh createChannel -bft will initiate a channel running BFT orderers. Using ./network.sh up -bft will initiate dockers for bft environment. Added option for 4 orderers. Add add_new_orderer_to_config.py which is referenced in the fabric official docs. Signed-off-by: Arkadi Piven <arkadi.piven@ibm.com> Signed-off-by: arkadipiven <arkadi7770@gmail.com>
33 lines
No EOL
1 KiB
YAML
Executable file
33 lines
No EOL
1 KiB
YAML
Executable file
# Copyright IBM Corp. All Rights Reserved.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# "OrdererOrgs" - Definition of organizations managing orderer nodes
|
|
# ---------------------------------------------------------------------------
|
|
OrdererOrgs:
|
|
# ---------------------------------------------------------------------------
|
|
# Orderer
|
|
# ---------------------------------------------------------------------------
|
|
- Name: Orderer
|
|
Domain: example.com
|
|
EnableNodeOUs: true
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# "Specs" - See PeerOrgs for complete description
|
|
# ---------------------------------------------------------------------------
|
|
Specs:
|
|
- Hostname: orderer
|
|
SANS:
|
|
- localhost
|
|
- Hostname: orderer2
|
|
SANS:
|
|
- localhost
|
|
- Hostname: orderer3
|
|
SANS:
|
|
- localhost
|
|
- Hostname: orderer4
|
|
SANS:
|
|
- localhost |