-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install Chaincode #20
Comments
Hey, I'm facing the same issue. Can you please share if you find a solution? |
I know this might be late, I hope you can still find this useful; but you can setup a fabric tools POD apiVersion: v1
1)Apply kubectl apply -f kubernetes/fabric-tools.yaml
export MY_CHAINCODE_NAME="my-chaincode" peer chaincode install -n ${MY_CHAINCODE_NAME} -v ${CHAINCODE_VERSION} -p path-to-chaincode
**you can add -P if you wanna setup endorsement policies. |
How do we install chaincode after setting up the network in this manner? The official hyperledger documentation uses a docker CLI container that can access the peers. But I don't see an equivalent pod in this kubernetes setup.
The text was updated successfully, but these errors were encountered: