mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-20 00:25:09 +00:00
[FAB-16197] Add connection profiles to .gitignore
Connection profiles are now generated during BYFN execution, and should not be tracked via Git. Also, the remaining connection profiles for Org3 need to be removed as they are no longer used/valid. Signed-off-by: Simon Stone <sstone1@uk.ibm.com> Change-Id: Ifb76e2a183643a26e95781b455f8c42fc2935928
This commit is contained in:
parent
3996db59dc
commit
639848a31d
3 changed files with 2 additions and 72 deletions
3
first-network/.gitignore
vendored
3
first-network/.gitignore
vendored
|
|
@ -5,4 +5,5 @@
|
|||
/ledgers
|
||||
/ledgers-backup
|
||||
/channel-artifacts/*.json
|
||||
/org3-artifacts/crypto-config/*
|
||||
/org3-artifacts/crypto-config/*
|
||||
/connection-*.*
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
{
|
||||
"name": "first-network-org3",
|
||||
"version": "1.0.0",
|
||||
"client": {
|
||||
"organization": "Org3",
|
||||
"connection": {
|
||||
"timeout": {
|
||||
"peer": {
|
||||
"endorser": "300"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizations": {
|
||||
"Org3": {
|
||||
"mspid": "Org3MSP",
|
||||
"peers": [
|
||||
"peer0.org3.example.com",
|
||||
"peer1.org3.example.com"
|
||||
]
|
||||
}
|
||||
},
|
||||
"peers": {
|
||||
"peer0.org3.example.com": {
|
||||
"url": "grpcs://localhost:11051",
|
||||
"tlsCACerts": {
|
||||
"path": "org3-artifacts/crypto-config/peerOrganizations/org3.example.com/tlsca/tlsca.org3.example.com-cert.pem"
|
||||
},
|
||||
"grpcOptions": {
|
||||
"ssl-target-name-override": "peer0.org3.example.com"
|
||||
}
|
||||
},
|
||||
"peer1.org3.example.com": {
|
||||
"url": "grpcs://localhost:12051",
|
||||
"tlsCACerts": {
|
||||
"path": "org3-artifacts/crypto-config/peerOrganizations/org3.example.com/tlsca/tlsca.org3.example.com-cert.pem"
|
||||
},
|
||||
"grpcOptions": {
|
||||
"ssl-target-name-override": "peer1.org3.example.com"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
---
|
||||
name: first-network-org3
|
||||
version: 1.0.0
|
||||
client:
|
||||
organization: Org3
|
||||
connection:
|
||||
timeout:
|
||||
peer:
|
||||
endorser: '300'
|
||||
organizations:
|
||||
Org3:
|
||||
mspid: Org3MSP
|
||||
peers:
|
||||
- peer0.org3.example.com
|
||||
- peer1.org3.example.com
|
||||
peers:
|
||||
peer0.org3.example.com:
|
||||
url: grpcs://localhost:11051
|
||||
tlsCACerts:
|
||||
path: org3-artifacts/crypto-config/peerOrganizations/org3.example.com/tlsca/tlsca.org3.example.com-cert.pem
|
||||
grpcOptions:
|
||||
ssl-target-name-override: peer0.org3.example.com
|
||||
peer1.org3.example.com:
|
||||
url: grpcs://localhost:12051
|
||||
tlsCACerts:
|
||||
path: org3-artifacts/crypto-config/peerOrganizations/org3.example.com/tlsca/tlsca.org3.example.com-cert.pem
|
||||
grpcOptions:
|
||||
ssl-target-name-override: peer1.org3.example.com
|
||||
Loading…
Reference in a new issue