mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-18 16:05:10 +00:00
Configtxgen was failing to print the org definition for org3 because it was missing the required policies for the org definition. This caused a failure in the CI test for adding an org. Because it will be needed in the future, this CR also adds the new lifecycle endorsement and general endorsement policies to the configtx.yamls as well. Change-Id: Ie53165231cf8afe6377b51a28625797b15ca78ec Signed-off-by: Jason Yellick <jyellick@us.ibm.com>
45 lines
1.5 KiB
YAML
45 lines
1.5 KiB
YAML
# Copyright IBM Corp. All Rights Reserved.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
---
|
|
################################################################################
|
|
#
|
|
# Section: Organizations
|
|
#
|
|
# - This section defines the different organizational identities which will
|
|
# be referenced later in the configuration.
|
|
#
|
|
################################################################################
|
|
Organizations:
|
|
- &Org3
|
|
# DefaultOrg defines the organization which is used in the sampleconfig
|
|
# of the fabric.git development environment
|
|
Name: Org3MSP
|
|
|
|
# ID to load the MSP definition as
|
|
ID: Org3MSP
|
|
|
|
MSPDir: crypto-config/peerOrganizations/org3.example.com/msp
|
|
|
|
AnchorPeers:
|
|
# AnchorPeers defines the location of peers which can be used
|
|
# for cross org gossip communication. Note, this value is only
|
|
# encoded in the genesis block in the Application section context
|
|
- Host: peer0.org3.example.com
|
|
Port: 11051
|
|
|
|
Policies:
|
|
Readers:
|
|
Type: Signature
|
|
Rule: "OR('Org3MSP.admin', 'Org3MSP.peer', 'Org3MSP.client')"
|
|
Writers:
|
|
Type: Signature
|
|
Rule: "OR('Org3MSP.admin', 'Org3MSP.client')"
|
|
Admins:
|
|
Type: Signature
|
|
Rule: "OR('Org3MSP.admin')"
|
|
Endorsement:
|
|
Type: Signature
|
|
Rule: "OR('Org3MSP.peer')"
|