-
Notifications
You must be signed in to change notification settings - Fork 13
/
netop1.env
executable file
·58 lines (47 loc) · 1.24 KB
/
netop1.env
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
# operator org for the fabric network
FABRIC_ORG=netop1.com
# limit resource of POD for peers and orderers
# (avoid resource issues in small test account of Google cloud)
POD_CPU=100m
POD_MEM=500Mi
# persistent volume size of Fabric nodes and tool containers
NODE_PV_SIZE=500Mi
TOOL_PV_SIZE=100Mi
# CA server admin, passwd and port
CA_ADMIN=caadmin
CA_PASSWD=caadminpw
TLS_ADMIN=tlsadmin
TLS_PASSWD=tlsadminpw
#CA_PORT=7054
#TLS_PORT=7055
# attributes for certificates
CSR_COUNTRY=US
CSR_STATE=California
CSR_CITY="Palo Alto"
# orderer sequence number
# ORDERER_MIN=0
ORDERER_MAX=3
# peer sequence number
# PEER_MIN=0
PEER_MAX=2
# fabric network admin and passwd
ADMIN_USER=Admin
ADMIN_PASSWD=adminpw
CLIENT_HOSTS="localhost,cli"
# sample users to create besides ADMIN_USER
USERS="Alice Bob"
# if type=solo, only the first orderer will be configured
#ORDERER_TYPE=solo
ORDERER_TYPE=etcdraft
# channel names for bootstrap and test
#SYS_CHANNEL=netop1-channel
#TEST_CHANNEL=mychannel
# external host port for first instance of orderer and peer,
#ORDERER_PORT=7050
#PEER_PORT=7051
# use couchdb for world state
STATE_DB=couchdb
# external host port for first instance of couchdb, used by docker-compose only
COUCHDB_PORT=7056
#COUCHDB_USER=
#COUCHDB_PASSWD=