Skip to content

Commit 9ffcffb

Browse files
committed
fixing formatting issues
1 parent e3d58a7 commit 9ffcffb

File tree

1 file changed

+19
-15
lines changed

1 file changed

+19
-15
lines changed

articles/blockchain/templates/hyperledger-fabric-consortium-azure-kubernetes-service.md

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -249,29 +249,30 @@ From orderer organization client, issue command to create a new channel. This co
249249
250250
Execute below commands in the given order to add a peer organization in a channel and consortium
251251
1. From peer organization client, upload peer organization MSP on azure storage
252-
```bash
253-
./azhlf msp export toAzureStorage -f $AZURE_FILE_CONNECTION_STRING -o $PEER_ORG_NAME
254-
```
252+
253+
```bash
254+
./azhlf msp export toAzureStorage -f $AZURE_FILE_CONNECTION_STRING -o $PEER_ORG_NAME
255+
```
255256
2. From orderer organization client, download peer organization MSP from azure storage and then issue command to add peer organization in channel/consortium.
256257

257-
```bash
258-
./azhlf msp import fromAzureStorage -o $PEER_ORG_NAME -f $AZURE_FILE_CONNECTION_STRING
259-
./azhlf channel join -c $CHANNEL_NAME -o $ORDERER_ORG_NAME -u $ORDERER_ADMIN_IDENTITY -p $PEER_ORG_NAME
260-
./azhlf consortium join -o $ORDERER_ORG_NAME -u $ORDERER_ADMIN_IDENTITY -p $PEER_ORG_NAME
261-
```
258+
```bash
259+
./azhlf msp import fromAzureStorage -o $PEER_ORG_NAME -f $AZURE_FILE_CONNECTION_STRING
260+
./azhlf channel join -c $CHANNEL_NAME -o $ORDERER_ORG_NAME -u $ORDERER_ADMIN_IDENTITY -p $PEER_ORG_NAME
261+
./azhlf consortium join -o $ORDERER_ORG_NAME -u $ORDERER_ADMIN_IDENTITY -p $PEER_ORG_NAME
262+
```
262263

263264
3. From orderer organization client, upload orderer connection profile on azure storage so that peer organization can connect to orderer nodes using this connection profile
264265

265-
```bash
266-
./azhlf connectionProfile export toAzureStorage -o $ORDERER_ORG_NAME -f $AZURE_FILE_CONNECTION_STRING
267-
```
266+
```bash
267+
./azhlf connectionProfile export toAzureStorage -o $ORDERER_ORG_NAME -f $AZURE_FILE_CONNECTION_STRING
268+
```
268269

269270
4. From peer organization client, download orderer connection profile from azure storage and then issue command to add peer nodes in the channel
270271

271-
```bash
272-
./azhlf connectionProfile import fromAzureStorage -o $ORDERER_ORG_NAME -f $AZURE_FILE_CONNECTION_STRING
273-
./azhlf channel joinPeerNodes -o $PEER_ORG_NAME -u $PEER_ADMIN_IDENTITY -c $CHANNEL_NAME --ordererOrg $ORDERER_ORG_NAME
274-
```
272+
```bash
273+
./azhlf connectionProfile import fromAzureStorage -o $ORDERER_ORG_NAME -f $AZURE_FILE_CONNECTION_STRING
274+
./azhlf channel joinPeerNodes -o $PEER_ORG_NAME -u $PEER_ADMIN_IDENTITY -c $CHANNEL_NAME --ordererOrg $ORDERER_ORG_NAME
275+
```
275276

276277
Similarly, to add more peer organizations in the channel, update peer environment variables as per the required peer organization and execute the steps 1 to 4.
277278

@@ -304,8 +305,11 @@ CHANNEL_NAME=<channelName>
304305
The below chaincode operations can be carried out:
305306

306307
[Install chaincode](#install-chaincode)
308+
307309
[Instantiate chaincode](#instantiate-chaincode)
310+
308311
[Invoke chaincode](#invoke-chaincode)
312+
309313
[Query chaincode](#query-chaincode)
310314

311315
### Install chaincode

0 commit comments

Comments
 (0)