Example Kubernetes container cluster network configuration file

Contents of the configuration file from your Hyperledger Fabric blockchain network that is running in a Kubernetes cluster in IBM® Cloud (formerly Bluemix®), that we can use to configure your IBM MQ Bridge to blockchain.

After we have worked through the IBM Blockchain Prepare and setup, Simple install, and Interacting with your blockchain tutorials, you should have a JSON file in your connection profile folder.

If you want to connect to your blockchain network, you must use the configuration details from this file when you are Creating the configuration file for the IBM MQ Bridge to blockchain.

{
     "name": "ibm-bc-org1",
     "description": "Connection profile for IBM Blockchain Platform",
     "type": "hlfv1",
     "orderers": [
         {
             "url": "grpc://INSERT_PUBLIC_IP:31010"
     ],
     "ca": {
         "url": "http://INSERT_PUBLIC_IP:30000",
         "name": "CA1"
     },
     "peers": [
         {
             "requestURL": "grpc://INSERT_PUBLIC_IP:30110",
             "eventURL": "grpc://INSERT_PUBLIC_IP:30111"
     ],
     "keyValStore": "INSERT_CREDENTIALS_PATH",
     "channel": "channel1",
     "mspID": "Org1MSP",
     "timeout": 300
 }