-
Notifications
You must be signed in to change notification settings - Fork 6
/
samplenet.yaml
73 lines (59 loc) · 1.57 KB
/
samplenet.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
DOCKER_NS: hyperledger
# version tag for fabric images (peer, orderer, etc.)
FABRIC_VERSION_TAG: 1.3.0
# version tag for ca image
CA_VERSION_TAG: 1.3.0
# version tag for couchdb, kafka, zookeeper
THIRDPARTY_VERSION_TAG: 0.4.13
# delay (in s) between starting the network and creating the channels
CHANNEL_CREATION_DELAY: 10
network: "samplenet"
domain: "samplenet.com"
description: "a Fabric network bootstrapped with netcomposer"
logLevel: "debug"
tlsEnabled: true
chaincodesPath: "./sample-chaincodes/"
orderer:
type: "solo"
#orderer:
# type: "kafka"
# consenters: 3
# kafkaBrokers: 3
# zookeeperNodes: 3
db:
provider: "goleveldb"
#db:
# provider: "CouchDB"
organizations: 1
peersPerOrganization: 1
usersPerOrganization: 1
channels:
- name: bigchannel
# - name: org1channel
# organizations:
# - organization: 1
# - name: org2channel
# organizations:
# - organization: 2
# peers:
# - peer: 1
# endorser: false
# queryChaincode: true
# queryLedger: true
# eventSource: true
# - peer: 2
# endorser: false
chaincodes:
- name: kv_chaincode_go_example01
version: 1.0
language: golang
path: go/kv_chaincode_go_example01
channels:
- bigchannel
# - name: kv_chaincode_node_example01
# version: 1.0
# language: node
# path: node/kv_chaincode_node_example01
# channels:
# - org1channel
# - org2channel