hyperledger / bevel-operator-fabric

Hyperledger Fabric Kubernetes operator - Hyperledger Fabric operator for Kubernetes (v2.3, v2.4 and v2.5)
https://hyperledger.github.io/bevel-operator-fabric/
Apache License 2.0
266 stars 90 forks source link

chaincode install #126

Closed JohanIskandar closed 1 year ago

JohanIskandar commented 1 year ago

Hello,

I am running KinD on Mac Intel Processor and while following https://github.com/hyperledger-labs/hlf-operator, when at chaincode install part, I got the following error message. What would be the possible causes and how to fix it. Thank you

kubectl hlf chaincode install --path=./chaincode.tgz \
    --config=org1.yaml --language=golang --label=$CHAINCODE_LABEL --user=admin --peer=org1-peer1.default

Error: unable to verify if cc is installed on grpcs://peer1-org1.localho.st:443. Got error: Transaction processing for endorser [peer1-org1.localho.st:443]: Endorser Client Status Code: (2) CONNECTION_FAILED. Description: dialing connection on target [peer1-org1.localho.st:443]: waiting for connection failed: context deadline exceeded

regards,

Johan

dviejokfs commented 1 year ago

@JohanIskandar

This is a deployment problem, please check that you have connectivity to the peers and the cluster

JohanIskandar commented 1 year ago

@JohanIskandar

This is a deployment problem, please check that you have connectivity to the peers and the cluster

thank you