Skip to content

Commit efaadd3

Browse files
committed
FAB-14531 BYFN Raft with 5 nodes
Extend the 3-node etcd/raft cluster in BYFN to 5 nodes, in order to better support the documentation effort. This will allow users to experiment creating channels with less then 5 nodes, but avoid the pitfalls of a 2-node cluster. Change-Id: I5ba1d6039b4bb4864b2b97271de81fbfe91b4fb5 Signed-off-by: Yoav Tock <tock@il.ibm.com>
1 parent ed0f1cc commit efaadd3

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed

first-network/configtx.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -381,10 +381,20 @@ Profiles:
381381
Port: 7050
382382
ClientTLSCert: crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/tls/server.crt
383383
ServerTLSCert: crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/tls/server.crt
384+
- Host: orderer4.example.com
385+
Port: 7050
386+
ClientTLSCert: crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/tls/server.crt
387+
ServerTLSCert: crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/tls/server.crt
388+
- Host: orderer5.example.com
389+
Port: 7050
390+
ClientTLSCert: crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/tls/server.crt
391+
ServerTLSCert: crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/tls/server.crt
384392
Addresses:
385393
- orderer.example.com:7050
386394
- orderer2.example.com:7050
387395
- orderer3.example.com:7050
396+
- orderer4.example.com:7050
397+
- orderer5.example.com:7050
388398

389399
Organizations:
390400
- *OrdererOrg

first-network/crypto-config.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ OrdererOrgs:
1919
- Hostname: orderer
2020
- Hostname: orderer2
2121
- Hostname: orderer3
22+
- Hostname: orderer4
23+
- Hostname: orderer5
24+
2225
# ---------------------------------------------------------------------------
2326
# "PeerOrgs" - Definition of organizations managing peer nodes
2427
# ---------------------------------------------------------------------------

first-network/docker-compose-etcdraft2.yaml

+32
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ version: '2'
88
volumes:
99
orderer2.example.com:
1010
orderer3.example.com:
11+
orderer4.example.com:
12+
orderer5.example.com:
1113

1214
networks:
1315
byfn:
@@ -43,3 +45,33 @@ services:
4345
- orderer3.example.com:/var/hyperledger/production/orderer
4446
ports:
4547
- 9050:7050
48+
49+
orderer4.example.com:
50+
extends:
51+
file: base/peer-base.yaml
52+
service: orderer-base
53+
container_name: orderer4.example.com
54+
networks:
55+
- byfn
56+
volumes:
57+
- ./channel-artifacts/genesis.block:/var/hyperledger/orderer/orderer.genesis.block
58+
- ./crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/msp:/var/hyperledger/orderer/msp
59+
- ./crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/tls/:/var/hyperledger/orderer/tls
60+
- orderer4.example.com:/var/hyperledger/production/orderer
61+
ports:
62+
- 10050:7050
63+
64+
orderer5.example.com:
65+
extends:
66+
file: base/peer-base.yaml
67+
service: orderer-base
68+
container_name: orderer5.example.com
69+
networks:
70+
- byfn
71+
volumes:
72+
- ./channel-artifacts/genesis.block:/var/hyperledger/orderer/orderer.genesis.block
73+
- ./crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/msp:/var/hyperledger/orderer/msp
74+
- ./crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/tls/:/var/hyperledger/orderer/tls
75+
- orderer5.example.com:/var/hyperledger/production/orderer
76+
ports:
77+
- 11050:7050

0 commit comments

Comments
 (0)