-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge "[FAB-6632] - Artifacts for BYFN reconfigure"
- Loading branch information
Showing
4 changed files
with
133 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
# Copyright IBM Corp. All Rights Reserved. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
|
||
version: '2' | ||
|
||
|
||
networks: | ||
byfn: | ||
|
||
services: | ||
|
||
peer0.org3.example.com: | ||
container_name: peer0.org3.example.com | ||
extends: | ||
file: base/peer-base.yaml | ||
service: peer-base | ||
environment: | ||
- CORE_PEER_ID=peer0.org3.example.com | ||
- CORE_PEER_ADDRESS=peer0.org3.example.com:7051 | ||
- CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer0.org3.example.com:7051 | ||
- CORE_PEER_LOCALMSPID=Org3MSP | ||
volumes: | ||
- /var/run/:/host/var/run/ | ||
- ./org3-artifacts/crypto-config/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/msp:/etc/hyperledger/fabric/msp | ||
- ./org3-artifacts/crypto-config/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/tls:/etc/hyperledger/fabric/tls | ||
ports: | ||
- 11051:7051 | ||
- 11053:7053 | ||
networks: | ||
- byfn | ||
|
||
peer1.org3.example.com: | ||
container_name: peer1.org3.example.com | ||
extends: | ||
file: base/peer-base.yaml | ||
service: peer-base | ||
environment: | ||
- CORE_PEER_ID=peer1.org3.example.com | ||
- CORE_PEER_ADDRESS=peer1.org3.example.com:7051 | ||
- CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer1.org3.example.com:7051 | ||
- CORE_PEER_GOSSIP_BOOTSTRAP=peer0.org3.example.com:7051 | ||
- CORE_PEER_LOCALMSPID=Org3MSP | ||
volumes: | ||
- /var/run/:/host/var/run/ | ||
- ./org3-artifacts/crypto-config/peerOrganizations/org3.example.com/peers/peer1.org3.example.com/msp:/etc/hyperledger/fabric/msp | ||
- ./org3-artifacts/crypto-config/peerOrganizations/org3.example.com/peers/peer1.org3.example.com/tls:/etc/hyperledger/fabric/tls | ||
ports: | ||
- 12051:7051 | ||
- 12053:7053 | ||
networks: | ||
- byfn | ||
|
||
|
||
Org3cli: | ||
container_name: Org3cli | ||
image: hyperledger/fabric-tools | ||
tty: true | ||
environment: | ||
- GOPATH=/opt/gopath | ||
- CORE_VM_ENDPOINT=unix:///host/var/run/docker.sock | ||
- CORE_LOGGING_LEVEL=DEBUG | ||
- CORE_PEER_ID=Org3cli | ||
- CORE_PEER_ADDRESS=peer0.org3.example.com:7051 | ||
- CORE_PEER_LOCALMSPID=Org3MSP | ||
- CORE_PEER_TLS_ENABLED=true | ||
- CORE_PEER_TLS_CERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/tls/server.crt | ||
- CORE_PEER_TLS_KEY_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/tls/server.key | ||
- CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/tls/ca.crt | ||
- CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org3.example.com/users/Admin@org3.example.com/msp | ||
working_dir: /opt/gopath/src/github.com/hyperledger/fabric/peer | ||
command: /bin/bash -c 'sleep 10000' | ||
volumes: | ||
- /var/run/:/host/var/run/ | ||
- ./../chaincode/:/opt/gopath/src/github.com/chaincode | ||
- ./org3-artifacts/crypto-config:/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ | ||
- ./scripts:/opt/gopath/src/github.com/hyperledger/fabric/peer/scripts/ | ||
depends_on: | ||
- peer0.org3.example.com | ||
- peer1.org3.example.com | ||
networks: | ||
- byfn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright IBM Corp. All Rights Reserved. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
|
||
--- | ||
################################################################################ | ||
# | ||
# Section: Organizations | ||
# | ||
# - This section defines the different organizational identities which will | ||
# be referenced later in the configuration. | ||
# | ||
################################################################################ | ||
Organizations: | ||
- &Org3 | ||
# DefaultOrg defines the organization which is used in the sampleconfig | ||
# of the fabric.git development environment | ||
Name: Org3MSP | ||
|
||
# ID to load the MSP definition as | ||
ID: Org3MSP | ||
|
||
MSPDir: crypto-config/peerOrganizations/org3.example.com/msp | ||
|
||
AnchorPeers: | ||
# AnchorPeers defines the location of peers which can be used | ||
# for cross org gossip communication. Note, this value is only | ||
# encoded in the genesis block in the Application section context | ||
- Host: peer0.org3.example.com | ||
Port: 7051 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Copyright IBM Corp. All Rights Reserved. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
|
||
# --------------------------------------------------------------------------- | ||
# "PeerOrgs" - Definition of organizations managing peer nodes | ||
# --------------------------------------------------------------------------- | ||
PeerOrgs: | ||
# --------------------------------------------------------------------------- | ||
# Org3 | ||
# --------------------------------------------------------------------------- | ||
- Name: Org3 | ||
Domain: org3.example.com | ||
Template: | ||
Count: 2 | ||
Users: | ||
Count: 1 |