Closed ignatov17 closed 3 years ago
Explore possibilities to deploy chaincode as external service.
deployed on test AS network as.nodenect.com with organisations: https://dtag.as.nodenect.com https://dtst.as.nodenect.com
Integrated external chaincode service in hybrid_v0.4 branch of BWRP, commit "7a5aef0".
Structure: ... ── template │ ├── kubernetes │ │ ├── chaincode-pod.yaml │ │ ├── chaincode-svc.yaml │ │ └── hyperledger-pod.yaml │ ├── chaincode │ │ ├── connection.json │ │ └── metadata.json ── scripts │ ├── builders/bin/build │ ├── builders/bin/detect │ ├── builders/bin/release │ ├── deploy_peer.sh │ └── deploy_chaincodes_external.sh ── config │ ├── core.yaml ── README.md ── setup.cfg
Fixing TLS certs issuing and external builders support for TLS certs implementation, commit #847ba5e in hybrid_v0.4 branch.
Structure of external chaincode deployment: ... ── template │ ├── kubernetes │ │ ├── chaincode-pod.yaml │ │ ├── chaincode-svc.yaml │ │ └── hyperledger-pod.yaml │ ├── chaincode │ │ ├── connection.json │ │ └── metadata.json ── scripts │ ├── builders/bin/build │ ├── builders/bin/detect │ ├── builders/bin/release │ ├── deploy_peer.sh │ ├── generate_crypto_cc.sh │ └── deploy_chaincodes_external.sh ── config │ ├── core.yaml ── README.md ── setup.cfg
How to implement Hyperledger Fabric External Chaincodes with HLF2, stop using docker in docker (dind) for chaincode container.