mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 23:45:10 +00:00
* Run the fabric test network on Kubernetes Signed-off-by: Josh Kneubuhl <jkneubuh@us.ibm.com> * Re-LINT Signed-off-by: Josh Kneubuhl <jkneubuh@us.ibm.com>
49 lines
1.2 KiB
JSON
Executable file
49 lines
1.2 KiB
JSON
Executable file
{
|
|
"name": "test-network-org${ORG}",
|
|
"version": "1.0.0",
|
|
"client": {
|
|
"organization": "Org${ORG}",
|
|
"connection": {
|
|
"timeout": {
|
|
"peer": {
|
|
"endorser": "300"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"organizations": {
|
|
"Org${ORG}": {
|
|
"mspid": "Org${ORG}MSP",
|
|
"peers": [
|
|
"org${ORG}-peer1"
|
|
],
|
|
"certificateAuthorities": [
|
|
"org${ORG}-ecert-ca"
|
|
]
|
|
}
|
|
},
|
|
"peers": {
|
|
"org${ORG}-peer1": {
|
|
"url": "grpcs://org${ORG}-peer1:7051",
|
|
"tlsCACerts": {
|
|
"pem": "${PEERPEM}"
|
|
},
|
|
"grpcOptions": {
|
|
"ssl-target-name-override": "org${ORG}-peer1",
|
|
"hostnameOverride": "org${ORG}-peer1"
|
|
}
|
|
}
|
|
},
|
|
"certificateAuthorities": {
|
|
"org${ORG}-ecert-ca": {
|
|
"url": "https://org${ORG}-ecert-ca",
|
|
"caName": "org${ORG}-ecert-ca",
|
|
"tlsCACerts": {
|
|
"pem": ["${CAPEM}"]
|
|
},
|
|
"httpOptions": {
|
|
"verify": false
|
|
}
|
|
}
|
|
}
|
|
}
|