diff --git a/src/agent/k8s/cluster_operations.py b/src/agent/k8s/cluster_operations.py index 3318a355..6df8dd95 100644 --- a/src/agent/k8s/cluster_operations.py +++ b/src/agent/k8s/cluster_operations.py @@ -583,14 +583,6 @@ def _delete_cluster_resource(self, cluster_name, yaml_data = yaml.load_all(file_data) self._delete_k8s_resource(yaml_data) - file_data = self._render_config_file("namespace.tpl", - cluster_name, - cluster_ports, - nfsServer_ip, - network_type) - yaml_data = yaml.load_all(file_data) - self._delete_k8s_resource(yaml_data) - time.sleep(3) for file in file_list: @@ -634,6 +626,15 @@ def _delete_cluster_resource(self, cluster_name, yaml_data = yaml.load_all(file_data) self._delete_k8s_resource(yaml_data) + time.sleep(3) + file_data = self._render_config_file("namespace.tpl", + cluster_name, + cluster_ports, + nfsServer_ip, + network_type) + yaml_data = yaml.load_all(file_data) + self._delete_k8s_resource(yaml_data) + def delete_cluster(self, cluster_name, ports_index, nfsServer_ip, consensus, network_type=NETWORK_TYPE_FABRIC_V1): diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/chaincodes/chaincode_example02/chaincode_example02.go b/src/agent/k8s/cluster_resources/fabric-1.1/resources/chaincodes/chaincode_example02/chaincode_example02.go new file mode 100644 index 00000000..53438066 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/chaincodes/chaincode_example02/chaincode_example02.go @@ -0,0 +1,199 @@ +/* +Copyright IBM Corp. 2016 All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package main + +//WARNING - this chaincode's ID is hard-coded in chaincode_example04 to illustrate one way of +//calling chaincode from a chaincode. If this example is modified, chaincode_example04.go has +//to be modified as well with the new ID of chaincode_example02. +//chaincode_example05 show's how chaincode ID can be passed in as a parameter instead of +//hard-coding. + +import ( + "fmt" + "strconv" + + "github.com/hyperledger/fabric/core/chaincode/shim" + pb "github.com/hyperledger/fabric/protos/peer" +) + +// SimpleChaincode example simple Chaincode implementation +type SimpleChaincode struct { +} + +func (t *SimpleChaincode) Init(stub shim.ChaincodeStubInterface) pb.Response { + fmt.Println("ex02 Init") + _, args := stub.GetFunctionAndParameters() + var A, B string // Entities + var Aval, Bval int // Asset holdings + var err error + + if len(args) != 4 { + return shim.Error("Incorrect number of arguments. Expecting 4") + } + + // Initialize the chaincode + A = args[0] + Aval, err = strconv.Atoi(args[1]) + if err != nil { + return shim.Error("Expecting integer value for asset holding") + } + B = args[2] + Bval, err = strconv.Atoi(args[3]) + if err != nil { + return shim.Error("Expecting integer value for asset holding") + } + fmt.Printf("Aval = %d, Bval = %d\n", Aval, Bval) + + // Write the state to the ledger + err = stub.PutState(A, []byte(strconv.Itoa(Aval))) + if err != nil { + return shim.Error(err.Error()) + } + + err = stub.PutState(B, []byte(strconv.Itoa(Bval))) + if err != nil { + return shim.Error(err.Error()) + } + + return shim.Success(nil) +} + +func (t *SimpleChaincode) Invoke(stub shim.ChaincodeStubInterface) pb.Response { + fmt.Println("ex02 Invoke") + function, args := stub.GetFunctionAndParameters() + if function == "invoke" { + // Make payment of X units from A to B + return t.invoke(stub, args) + } else if function == "delete" { + // Deletes an entity from its state + return t.delete(stub, args) + } else if function == "query" { + // the old "Query" is now implemtned in invoke + return t.query(stub, args) + } + + return shim.Error("Invalid invoke function name. Expecting \"invoke\" \"delete\" \"query\"") +} + +// Transaction makes payment of X units from A to B +func (t *SimpleChaincode) invoke(stub shim.ChaincodeStubInterface, args []string) pb.Response { + var A, B string // Entities + var Aval, Bval int // Asset holdings + var X int // Transaction value + var err error + + if len(args) != 3 { + return shim.Error("Incorrect number of arguments. Expecting 3") + } + + A = args[0] + B = args[1] + + // Get the state from the ledger + // TODO: will be nice to have a GetAllState call to ledger + Avalbytes, err := stub.GetState(A) + if err != nil { + return shim.Error("Failed to get state") + } + if Avalbytes == nil { + return shim.Error("Entity not found") + } + Aval, _ = strconv.Atoi(string(Avalbytes)) + + Bvalbytes, err := stub.GetState(B) + if err != nil { + return shim.Error("Failed to get state") + } + if Bvalbytes == nil { + return shim.Error("Entity not found") + } + Bval, _ = strconv.Atoi(string(Bvalbytes)) + + // Perform the execution + X, err = strconv.Atoi(args[2]) + if err != nil { + return shim.Error("Invalid transaction amount, expecting a integer value") + } + Aval = Aval - X + Bval = Bval + X + fmt.Printf("Aval = %d, Bval = %d\n", Aval, Bval) + + // Write the state back to the ledger + err = stub.PutState(A, []byte(strconv.Itoa(Aval))) + if err != nil { + return shim.Error(err.Error()) + } + + err = stub.PutState(B, []byte(strconv.Itoa(Bval))) + if err != nil { + return shim.Error(err.Error()) + } + + return shim.Success(nil) +} + +// Deletes an entity from state +func (t *SimpleChaincode) delete(stub shim.ChaincodeStubInterface, args []string) pb.Response { + if len(args) != 1 { + return shim.Error("Incorrect number of arguments. Expecting 1") + } + + A := args[0] + + // Delete the key from the state in ledger + err := stub.DelState(A) + if err != nil { + return shim.Error("Failed to delete state") + } + + return shim.Success(nil) +} + +// query callback representing the query of a chaincode +func (t *SimpleChaincode) query(stub shim.ChaincodeStubInterface, args []string) pb.Response { + var A string // Entities + var err error + + if len(args) != 1 { + return shim.Error("Incorrect number of arguments. Expecting name of the person to query") + } + + A = args[0] + + // Get the state from the ledger + Avalbytes, err := stub.GetState(A) + if err != nil { + jsonResp := "{\"Error\":\"Failed to get state for " + A + "\"}" + return shim.Error(jsonResp) + } + + if Avalbytes == nil { + jsonResp := "{\"Error\":\"Nil amount for " + A + "\"}" + return shim.Error(jsonResp) + } + + jsonResp := "{\"Name\":\"" + A + "\",\"Amount\":\"" + string(Avalbytes) + "\"}" + fmt.Printf("Query Response:%s\n", jsonResp) + return shim.Success(Avalbytes) +} + +func main() { + err := shim.Start(new(SimpleChaincode)) + if err != nil { + fmt.Printf("Error starting Simple chaincode: %s", err) + } +} diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/channel-artifacts/Org1MSPanchors.tx b/src/agent/k8s/cluster_resources/fabric-1.1/resources/channel-artifacts/Org1MSPanchors.tx new file mode 100644 index 00000000..73feca28 Binary files /dev/null and b/src/agent/k8s/cluster_resources/fabric-1.1/resources/channel-artifacts/Org1MSPanchors.tx differ diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/channel-artifacts/Org2MSPanchors.tx b/src/agent/k8s/cluster_resources/fabric-1.1/resources/channel-artifacts/Org2MSPanchors.tx new file mode 100644 index 00000000..36b01983 Binary files /dev/null and b/src/agent/k8s/cluster_resources/fabric-1.1/resources/channel-artifacts/Org2MSPanchors.tx differ diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/channel-artifacts/configtx.yaml b/src/agent/k8s/cluster_resources/fabric-1.1/resources/channel-artifacts/configtx.yaml new file mode 100644 index 00000000..c8ccf126 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/channel-artifacts/configtx.yaml @@ -0,0 +1,184 @@ +--- +################################################################################ +# +# Profile +# +# - Different configuration profiles may be encoded here to be specified +# as parameters to the configtxgen tool +# +################################################################################ +Profiles: + + TwoOrgsOrdererGenesis: + Orderer: + <<: *OrdererDefaults + Organizations: + - *OrdererOrg + Consortiums: + SampleConsortium: + Organizations: + - *Org1 + - *Org2 + TwoOrgsChannel: + Consortium: SampleConsortium + Application: + <<: *ApplicationDefaults + Organizations: + - *Org1 + - *Org2 + +################################################################################ +# +# Section: Organizations +# +# - This section defines the different organizational identities which will +# be referenced later in the configuration. +# +################################################################################ +Organizations: + + # SampleOrg defines an MSP using the sampleconfig. It should never be used + # in production but may be used as a template for other definitions + - &OrdererOrg + # DefaultOrg defines the organization which is used in the sampleconfig + # of the fabric.git development environment + Name: OrdererOrg + + # ID to load the MSP definition as + ID: OrdererMSP + + # MSPDir is the filesystem path which contains the MSP configuration + MSPDir: crypto-config/ordererOrganizations/example.com/msp + + # BCCSP (Blockchain crypto provider): Select which crypto implementation or + # library to use + # BCCSP: + # Default: SW + # SW: + # Hash: SHA2 + # Security: 256 + # # Location of Key Store. If this is unset, a location will + # # be chosen using 'MSPDir'/keystore + # FileKeyStore: + # KeyStore: + + - &Org1 + # DefaultOrg defines the organization which is used in the sampleconfig + # of the fabric.git development environment + Name: Org1MSP + + # ID to load the MSP definition as + ID: Org1MSP + + MSPDir: crypto-config/peerOrganizations/org1.example.com/msp + + # BCCSP (Blockchain crypto provider): Select which crypto implementation or + # library to use + # BCCSP: + # Default: SW + # SW: + # Hash: SHA2 + # Security: 256 + # # Location of Key Store. If this is unset, a location will + # # be chosen using 'MSPDir'/keystore + # FileKeyStore: + # KeyStore: + + 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-org1 + Port: 7051 + + - &Org2 + # DefaultOrg defines the organization which is used in the sampleconfig + # of the fabric.git development environment + Name: Org2MSP + + # ID to load the MSP definition as + ID: Org2MSP + + MSPDir: crypto-config/peerOrganizations/org2.example.com/msp + + # BCCSP (Blockchain crypto provider): Select which crypto implementation or + # library to use + # BCCSP: + # Default: SW + # SW: + # Hash: SHA2 + # Security: 256 + # # Location of Key Store. If this is unset, a location will + # # be chosen using 'MSPDir'/keystore + # FileKeyStore: + # KeyStore: + + 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-org2 + Port: 7051 + +################################################################################ +# +# SECTION: Orderer +# +# - This section defines the values to encode into a config transaction or +# genesis block for orderer related parameters +# +################################################################################ +Orderer: &OrdererDefaults + + # Orderer Type: The orderer implementation to start + # Available types are "solo" and "kafka" + OrdererType: solo + + Addresses: + - orderer0:7050 + + # Batch Timeout: The amount of time to wait before creating a batch + BatchTimeout: 2s + + # Batch Size: Controls the number of messages batched into a block + BatchSize: + + # Max Message Count: The maximum number of messages to permit in a batch + MaxMessageCount: 10 + + # Absolute Max Bytes: The absolute maximum number of bytes allowed for + # the serialized messages in a batch. + AbsoluteMaxBytes: 99 MB + + # Preferred Max Bytes: The preferred maximum number of bytes allowed for + # the serialized messages in a batch. A message larger than the preferred + # max bytes will result in a batch larger than preferred max bytes. + PreferredMaxBytes: 512 KB + + Kafka: + # Brokers: A list of Kafka brokers to which the orderer connects + # NOTE: Use IP:port notation + Brokers: + - kafka0:9092 + - kafka1:9092 + - kafka2:9092 + + # Organizations is the list of orgs which are defined as participants on + # the orderer side of the network + Organizations: + - *OrdererOrg +################################################################################ +# +# SECTION: Application +# +# - This section defines the values to encode into a config transaction or +# genesis block for application related parameters +# +################################################################################ +Application: &ApplicationDefaults + + # Organizations is the list of orgs which are defined as participants on + # the application side of the network + Organizations: + - *Org1 + - *Org2 diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/channel-artifacts/genesis.block b/src/agent/k8s/cluster_resources/fabric-1.1/resources/channel-artifacts/genesis.block new file mode 100644 index 00000000..a86e0cea Binary files /dev/null and b/src/agent/k8s/cluster_resources/fabric-1.1/resources/channel-artifacts/genesis.block differ diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/channel-artifacts/mychannel.tx b/src/agent/k8s/cluster_resources/fabric-1.1/resources/channel-artifacts/mychannel.tx new file mode 100644 index 00000000..ce4a911c Binary files /dev/null and b/src/agent/k8s/cluster_resources/fabric-1.1/resources/channel-artifacts/mychannel.tx differ diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/crypto-config.yaml b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/crypto-config.yaml new file mode 100644 index 00000000..0e83623f --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/crypto-config.yaml @@ -0,0 +1,89 @@ +# --------------------------------------------------------------------------- +# "OrdererOrgs" - Definition of organizations managing orderer nodes +# --------------------------------------------------------------------------- +OrdererOrgs: + # --------------------------------------------------------------------------- + # Orderer + # --------------------------------------------------------------------------- + - Name: orderer + Domain: example.com + # --------------------------------------------------------------------------- + # "Specs" - See PeerOrgs below for complete description + # --------------------------------------------------------------------------- + Specs: + - Hostname: orderer + SANS: + - orderer0 + +# --------------------------------------------------------------------------- +# "PeerOrgs" - Definition of organizations managing peer nodes +# --------------------------------------------------------------------------- +PeerOrgs: + # --------------------------------------------------------------------------- + # Org1 + # --------------------------------------------------------------------------- + - Name: Org1 + Domain: org1.example.com + # --------------------------------------------------------------------------- + # "Specs" + # --------------------------------------------------------------------------- + # Uncomment this section to enable the explicit definition of hosts in your + # configuration. Most users will want to use Template, below + # + # Specs is an array of Spec entries. Each Spec entry consists of two fields: + # - Hostname: (Required) The desired hostname, sans the domain. + # - CommonName: (Optional) Specifies the template or explicit override for + # the CN. By default, this is the template: + # + # "{{.Hostname}}.{{.Domain}}" + # + # which obtains its values from the Spec.Hostname and + # Org.Domain, respectively. + # --------------------------------------------------------------------------- + # Specs: + # - Hostname: foo # implicitly "foo.org1.example.com" + # CommonName: foo27.org5.example.com # overrides Hostname-based FQDN set above + # - Hostname: bar + # - Hostname: baz + # --------------------------------------------------------------------------- + # "Template" + # --------------------------------------------------------------------------- + # Allows for the definition of 1 or more hosts that are created sequentially + # from a template. By default, this looks like "peer%d" from 0 to Count-1. + # You may override the number of nodes (Count), the starting index (Start) + # or the template used to construct the name (Hostname). + # + # Note: Template and Specs are not mutually exclusive. You may define both + # sections and the aggregate nodes will be created for you. Take care with + # name collisions + # --------------------------------------------------------------------------- + Specs: + - Hostname: peer0 + SANS: + - peer0-org1 + - Hostname: peer1 + SANS: + - peer1-org1 + # Start: 5 + # Hostname: {{.Prefix}}{{.Index}} # default + # --------------------------------------------------------------------------- + # "Users" + # --------------------------------------------------------------------------- + # Count: The number of user accounts _in addition_ to Admin + # --------------------------------------------------------------------------- + Users: + Count: 1 + # --------------------------------------------------------------------------- + # Org2: See "Org1" for full specification + # --------------------------------------------------------------------------- + - Name: Org2 + Domain: org2.example.com + Specs: + - Hostname: peer0 + SANS: + - peer0-org2 + - Hostname: peer1 + SANS: + - peer1-org2 + Users: + Count: 1 diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/ca/27641843b9d9b9852e227ae6188df73ff0276588be052dd2d3ded7be1744fc14_sk b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/ca/27641843b9d9b9852e227ae6188df73ff0276588be052dd2d3ded7be1744fc14_sk new file mode 100755 index 00000000..f7381b7e --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/ca/27641843b9d9b9852e227ae6188df73ff0276588be052dd2d3ded7be1744fc14_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgH8cgUJX3szzaugqX +b6VHJ52VaQeD4/2M1GVrVEPzwKahRANCAAQQhlRDM3EDZwjvjlQ2nR2QPYVFk8Nk +IUtDMVgbEfVUnRJx9h8LSVFzBqMgU01XaiDFQt6KZ6jT/AbuFel/sq/0 +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem new file mode 100644 index 00000000..12d01075 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQd3mpED9jN9D7lOpFbn1hSzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MTAyNzEwMDY1MloXDTI4MTAyNDEwMDY1MlowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBCGVEMzcQNnCO+OVDadHZA9hUWT +w2QhS0MxWBsR9VSdEnH2HwtJUXMGoyBTTVdqIMVC3opnqNP8Bu4V6X+yr/SjXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEICdkGEO52bmFLiJ65hiN9z/wJ2WIvgUt0tPe174XRPwUMAoG +CCqGSM49BAMCA0gAMEUCIQD1RsB94DWeHUOxF9yQbL6gJsJWB/abvgsmlkIad3qR +QQIgQ2FvByjKLUI0rHhClVFptZSua9zmo8BI1FuCcEdD40g= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem new file mode 100644 index 00000000..ec2ff0b8 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem @@ -0,0 +1,13 @@ +-----BEGIN CERTIFICATE----- +MIICCzCCAbGgAwIBAgIRAPeOvjB+yUG/vGYbsHXu09wwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMFYxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABOOVCsMSTNLLC2iBaXxYQygRYAwf4LUClr1PZXHa5lnOLMLOJpkT +GipvuxUh7riVEsefW+7dNLyYW3gwRF8RU/WjTTBLMA4GA1UdDwEB/wQEAwIHgDAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICdkGEO52bmFLiJ65hiN9z/wJ2WIvgUt +0tPe174XRPwUMAoGCCqGSM49BAMCA0gAMEUCIQC1TPX5A9rF7ZoalJG8o1lxCbcf +WcnVAp2bxaDEyMJEVwIgYbkzjAYT3ZjPQr0Zwc1sySeV6ue6l91+I32qhe9239Y= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem new file mode 100644 index 00000000..12d01075 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQd3mpED9jN9D7lOpFbn1hSzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MTAyNzEwMDY1MloXDTI4MTAyNDEwMDY1MlowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBCGVEMzcQNnCO+OVDadHZA9hUWT +w2QhS0MxWBsR9VSdEnH2HwtJUXMGoyBTTVdqIMVC3opnqNP8Bu4V6X+yr/SjXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEICdkGEO52bmFLiJ65hiN9z/wJ2WIvgUt0tPe174XRPwUMAoG +CCqGSM49BAMCA0gAMEUCIQD1RsB94DWeHUOxF9yQbL6gJsJWB/abvgsmlkIad3qR +QQIgQ2FvByjKLUI0rHhClVFptZSua9zmo8BI1FuCcEdD40g= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem new file mode 100644 index 00000000..b90a5119 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRAO9eQIvFWTVu6P3wG7qyxwMwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQVkav3qnUaq2sT5fXa +w7PC66C1tNvm0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3Lc +Wuj9o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6Sh +mD8jYjAKBggqhkjOPQQDAgNIADBFAiEAj8nHgKRVcScP5atiRilix5AULPsxEcLx +tkazxYlUqb0CIHuBnz2s+DCiAfvQyBgsN6vUzoFfwylS3+e7o/sgpU3R +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderer.genesis.block b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderer.genesis.block new file mode 100644 index 00000000..a86e0cea Binary files /dev/null and b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderer.genesis.block differ diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem new file mode 100644 index 00000000..ec2ff0b8 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem @@ -0,0 +1,13 @@ +-----BEGIN CERTIFICATE----- +MIICCzCCAbGgAwIBAgIRAPeOvjB+yUG/vGYbsHXu09wwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMFYxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABOOVCsMSTNLLC2iBaXxYQygRYAwf4LUClr1PZXHa5lnOLMLOJpkT +GipvuxUh7riVEsefW+7dNLyYW3gwRF8RU/WjTTBLMA4GA1UdDwEB/wQEAwIHgDAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICdkGEO52bmFLiJ65hiN9z/wJ2WIvgUt +0tPe174XRPwUMAoGCCqGSM49BAMCA0gAMEUCIQC1TPX5A9rF7ZoalJG8o1lxCbcf +WcnVAp2bxaDEyMJEVwIgYbkzjAYT3ZjPQr0Zwc1sySeV6ue6l91+I32qhe9239Y= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem new file mode 100644 index 00000000..12d01075 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQd3mpED9jN9D7lOpFbn1hSzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MTAyNzEwMDY1MloXDTI4MTAyNDEwMDY1MlowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBCGVEMzcQNnCO+OVDadHZA9hUWT +w2QhS0MxWBsR9VSdEnH2HwtJUXMGoyBTTVdqIMVC3opnqNP8Bu4V6X+yr/SjXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEICdkGEO52bmFLiJ65hiN9z/wJ2WIvgUt0tPe174XRPwUMAoG +CCqGSM49BAMCA0gAMEUCIQD1RsB94DWeHUOxF9yQbL6gJsJWB/abvgsmlkIad3qR +QQIgQ2FvByjKLUI0rHhClVFptZSua9zmo8BI1FuCcEdD40g= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/d3c01e3de9d0fd09b91aef4dfa10325953a7baa8e86f8ec604cc16af47059be6_sk b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/d3c01e3de9d0fd09b91aef4dfa10325953a7baa8e86f8ec604cc16af47059be6_sk new file mode 100755 index 00000000..7c071b70 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/d3c01e3de9d0fd09b91aef4dfa10325953a7baa8e86f8ec604cc16af47059be6_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgD99NWTDKsz+4bzNg +DP8Z8RKleXkpCACqiMDL1PoCld2hRANCAARwHwHpHxPYHhY7fGeQHyihtUx2JSXE +S3wk2v829otAUxZ2FSYoXrh3BRRHIACeOdp8gaeIJ4IBXlKm/LauQeX8 +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem new file mode 100644 index 00000000..853236b6 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem @@ -0,0 +1,13 @@ +-----BEGIN CERTIFICATE----- +MIICCzCCAbKgAwIBAgIQSMwV/nntRLTJPwNGrwqzbzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MTAyNzEwMDY1MloXDTI4MTAyNDEwMDY1MlowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAARwHwHpHxPYHhY7fGeQHyihtUx2JSXES3wk2v829otAUxZ2FSYo +Xrh3BRRHIACeOdp8gaeIJ4IBXlKm/LauQeX8o00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAnZBhDudm5hS4ieuYYjfc/8CdliL4F +LdLT3te+F0T8FDAKBggqhkjOPQQDAgNHADBEAiBBfKP1ThU3HRIMYXuvu6Ixui3/ +9q29/Q7jv3vfRSBUBQIgaYDDWdewm3x5oAUGPIhahq5KJjAffVruTTFqL/ID2bQ= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem new file mode 100644 index 00000000..b90a5119 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRAO9eQIvFWTVu6P3wG7qyxwMwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQVkav3qnUaq2sT5fXa +w7PC66C1tNvm0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3Lc +Wuj9o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6Sh +mD8jYjAKBggqhkjOPQQDAgNIADBFAiEAj8nHgKRVcScP5atiRilix5AULPsxEcLx +tkazxYlUqb0CIHuBnz2s+DCiAfvQyBgsN6vUzoFfwylS3+e7o/sgpU3R +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt new file mode 100644 index 00000000..b90a5119 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRAO9eQIvFWTVu6P3wG7qyxwMwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQVkav3qnUaq2sT5fXa +w7PC66C1tNvm0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3Lc +Wuj9o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6Sh +mD8jYjAKBggqhkjOPQQDAgNIADBFAiEAj8nHgKRVcScP5atiRilix5AULPsxEcLx +tkazxYlUqb0CIHuBnz2s+DCiAfvQyBgsN6vUzoFfwylS3+e7o/sgpU3R +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt new file mode 100644 index 00000000..d0156950 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICYjCCAgmgAwIBAgIQTArOhF6FzulLnT3VVXwmwDAKBggqhkjOPQQDAjBsMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xGjAYBgNVBAMTEXRsc2NhLmV4 +YW1wbGUuY29tMB4XDTE4MTAyNzEwMDY1MloXDTI4MTAyNDEwMDY1MlowWDELMAkG +A1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFu +Y2lzY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIB +BggqhkjOPQMBBwNCAASabAZSZbkYYb+ZZ9c8SKf8QgDvhxEtE4tx0WiwEDo6DzSX +FJ+m4CP+mWN1WV0VYDqA90kXYWMlea1/PQCKtpOTo4GgMIGdMA4GA1UdDwEB/wQE +AwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDAYDVR0TAQH/BAIw +ADArBgNVHSMEJDAigCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6ShmD8jYjAx +BgNVHREEKjAoghNvcmRlcmVyLmV4YW1wbGUuY29tggdvcmRlcmVygghvcmRlcmVy +MDAKBggqhkjOPQQDAgNHADBEAiATIulDTgIgrSNcRYj8jFiT+nPVxbxmZlMOvwPn +U+ou8AIgTMf054RLRaH6yUNYijQOZhiXdH2+UyOlK00NZD01TOY= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key new file mode 100755 index 00000000..a6dd236b --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgAArOl7PGCTcI4Eq6 +//ScZf6a/5h0lQx8/9+ayEZfAW6hRANCAASabAZSZbkYYb+ZZ9c8SKf8QgDvhxEt +E4tx0WiwEDo6DzSXFJ+m4CP+mWN1WV0VYDqA90kXYWMlea1/PQCKtpOT +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/tlsca/408befc0c430e1ddcc27b805d6defb97bf8c23a95df458eb816ba4a1983f2362_sk b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/tlsca/408befc0c430e1ddcc27b805d6defb97bf8c23a95df458eb816ba4a1983f2362_sk new file mode 100755 index 00000000..1d8a7c8f --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/tlsca/408befc0c430e1ddcc27b805d6defb97bf8c23a95df458eb816ba4a1983f2362_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgngB3PwbhfOQ9pgZu +O5QcuFc2zNNzJrOJ4bk+gk8mBk+hRANCAAQVkav3qnUaq2sT5fXaw7PC66C1tNvm +0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3LcWuj9 +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem new file mode 100644 index 00000000..b90a5119 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRAO9eQIvFWTVu6P3wG7qyxwMwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQVkav3qnUaq2sT5fXa +w7PC66C1tNvm0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3Lc +Wuj9o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6Sh +mD8jYjAKBggqhkjOPQQDAgNIADBFAiEAj8nHgKRVcScP5atiRilix5AULPsxEcLx +tkazxYlUqb0CIHuBnz2s+DCiAfvQyBgsN6vUzoFfwylS3+e7o/sgpU3R +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem new file mode 100644 index 00000000..ec2ff0b8 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem @@ -0,0 +1,13 @@ +-----BEGIN CERTIFICATE----- +MIICCzCCAbGgAwIBAgIRAPeOvjB+yUG/vGYbsHXu09wwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMFYxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABOOVCsMSTNLLC2iBaXxYQygRYAwf4LUClr1PZXHa5lnOLMLOJpkT +GipvuxUh7riVEsefW+7dNLyYW3gwRF8RU/WjTTBLMA4GA1UdDwEB/wQEAwIHgDAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICdkGEO52bmFLiJ65hiN9z/wJ2WIvgUt +0tPe174XRPwUMAoGCCqGSM49BAMCA0gAMEUCIQC1TPX5A9rF7ZoalJG8o1lxCbcf +WcnVAp2bxaDEyMJEVwIgYbkzjAYT3ZjPQr0Zwc1sySeV6ue6l91+I32qhe9239Y= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem new file mode 100644 index 00000000..12d01075 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQd3mpED9jN9D7lOpFbn1hSzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MTAyNzEwMDY1MloXDTI4MTAyNDEwMDY1MlowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBCGVEMzcQNnCO+OVDadHZA9hUWT +w2QhS0MxWBsR9VSdEnH2HwtJUXMGoyBTTVdqIMVC3opnqNP8Bu4V6X+yr/SjXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEICdkGEO52bmFLiJ65hiN9z/wJ2WIvgUt0tPe174XRPwUMAoG +CCqGSM49BAMCA0gAMEUCIQD1RsB94DWeHUOxF9yQbL6gJsJWB/abvgsmlkIad3qR +QQIgQ2FvByjKLUI0rHhClVFptZSua9zmo8BI1FuCcEdD40g= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/e3b630d32ecf1662a06d1e17b06c047dabfddbb940688ccd3d39a26d38864a14_sk b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/e3b630d32ecf1662a06d1e17b06c047dabfddbb940688ccd3d39a26d38864a14_sk new file mode 100755 index 00000000..a3eba98c --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/e3b630d32ecf1662a06d1e17b06c047dabfddbb940688ccd3d39a26d38864a14_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg+mWcSCFy5cwRXBJQ +lrUSvD1ghzdEqPl67noqL7QIev+hRANCAATjlQrDEkzSywtogWl8WEMoEWAMH+C1 +Apa9T2Vx2uZZzizCziaZExoqb7sVIe64lRLHn1vu3TS8mFt4MERfEVP1 +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem new file mode 100644 index 00000000..ec2ff0b8 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem @@ -0,0 +1,13 @@ +-----BEGIN CERTIFICATE----- +MIICCzCCAbGgAwIBAgIRAPeOvjB+yUG/vGYbsHXu09wwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMFYxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABOOVCsMSTNLLC2iBaXxYQygRYAwf4LUClr1PZXHa5lnOLMLOJpkT +GipvuxUh7riVEsefW+7dNLyYW3gwRF8RU/WjTTBLMA4GA1UdDwEB/wQEAwIHgDAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICdkGEO52bmFLiJ65hiN9z/wJ2WIvgUt +0tPe174XRPwUMAoGCCqGSM49BAMCA0gAMEUCIQC1TPX5A9rF7ZoalJG8o1lxCbcf +WcnVAp2bxaDEyMJEVwIgYbkzjAYT3ZjPQr0Zwc1sySeV6ue6l91+I32qhe9239Y= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem new file mode 100644 index 00000000..b90a5119 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRAO9eQIvFWTVu6P3wG7qyxwMwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQVkav3qnUaq2sT5fXa +w7PC66C1tNvm0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3Lc +Wuj9o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6Sh +mD8jYjAKBggqhkjOPQQDAgNIADBFAiEAj8nHgKRVcScP5atiRilix5AULPsxEcLx +tkazxYlUqb0CIHuBnz2s+DCiAfvQyBgsN6vUzoFfwylS3+e7o/sgpU3R +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt new file mode 100644 index 00000000..b90a5119 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRAO9eQIvFWTVu6P3wG7qyxwMwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQVkav3qnUaq2sT5fXa +w7PC66C1tNvm0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3Lc +Wuj9o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6Sh +mD8jYjAKBggqhkjOPQQDAgNIADBFAiEAj8nHgKRVcScP5atiRilix5AULPsxEcLx +tkazxYlUqb0CIHuBnz2s+DCiAfvQyBgsN6vUzoFfwylS3+e7o/sgpU3R +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt new file mode 100644 index 00000000..a35d9015 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICLDCCAdOgAwIBAgIRAL6AEy/g1TghDMQ4HWaxXZkwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMFYxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEG +CCqGSM49AwEHA0IABLw7LC1yCMu+hrAwgheVh9yj3tLY8bwGxXvyU/W96/t0FLwt +gDx/QsYn2GuONTaTx0ls22jRtw+Kd4fPj42aA12jbDBqMA4GA1UdDwEB/wQEAwIF +oDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDAYDVR0TAQH/BAIwADAr +BgNVHSMEJDAigCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6ShmD8jYjAKBggq +hkjOPQQDAgNHADBEAiAMSNSeGLwC3vY9Q4ORW/Vsar8rqruL2ZA3GzE8yhFcMwIg +ET0ESG0SJV2HDxrg38ik+JtvKUwqBUozzYPImycaq88= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key new file mode 100755 index 00000000..6cb10459 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg3YL6ruqUKDa1+DuI +FFzLh/nsUBYPwbxKK1t3FxHo6pihRANCAAS8OywtcgjLvoawMIIXlYfco97S2PG8 +BsV78lP1vev7dBS8LYA8f0LGJ9hrjjU2k8dJbNto0bcPineHz4+NmgNd +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/ca/325aba0f5711d0298bb5812da89297e3dd52d66c40899cda2b43c9420cb21868_sk b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/ca/325aba0f5711d0298bb5812da89297e3dd52d66c40899cda2b43c9420cb21868_sk new file mode 100755 index 00000000..9eafc272 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/ca/325aba0f5711d0298bb5812da89297e3dd52d66c40899cda2b43c9420cb21868_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgicNbrihwcFj1dLPb +6+uBhe7QxyNOvGl3EHoLjoZU4G6hRANCAATesUm5yu8fJecjuUgHapgvwg9AejjO +f+gXbMp3Ok6EL0DIumfI/LC7J5ip9gsD+/aSWy7IN4UKSORWzIYeyTZP +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..c45ba9cd --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAP4Lv47rQS4NRUD1SnBQuWMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BN6xSbnK7x8l5yO5SAdqmC/CD0B6OM5/6Bdsync6ToQvQMi6Z8j8sLsnmKn2CwP7 +9pJbLsg3hQpI5FbMhh7JNk+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDJaug9XEdApi7WBLaiS +l+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0gAMEUCIQDOcw+nzAc2zK8d ++FVp+f3lesZLTzmR6dgAPnr+WSaDLQIgY6cHZXMEZu7IC/AHq1klkzXqObRBBQgR +C4a/Uu57KfY= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem new file mode 100644 index 00000000..35e2f597 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAOjRDJSEnySEM3dZhGnVUk8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJtXUnp5j/NTsOo5h395+U5wfUi8V4Te +S88+IfNRM3mlUapEMSDwFNBkb0a8DInz8qz+tGd2Tr/a5NAJYN5VFdijTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDJaug9XEdAp +i7WBLaiSl+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0cAMEQCIH5QOeAf +3PiVHEKMcXcxAppBnzEIYbaIXknhlPFU7kvqAiBI9QgnKOCMv+jCBCb/wljrf8wN +HAC1mvqb8Hl5LPgLLA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..c45ba9cd --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAP4Lv47rQS4NRUD1SnBQuWMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BN6xSbnK7x8l5yO5SAdqmC/CD0B6OM5/6Bdsync6ToQvQMi6Z8j8sLsnmKn2CwP7 +9pJbLsg3hQpI5FbMhh7JNk+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDJaug9XEdApi7WBLaiS +l+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0gAMEUCIQDOcw+nzAc2zK8d ++FVp+f3lesZLTzmR6dgAPnr+WSaDLQIgY6cHZXMEZu7IC/AHq1klkzXqObRBBQgR +C4a/Uu57KfY= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem new file mode 100644 index 00000000..35e2f597 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAOjRDJSEnySEM3dZhGnVUk8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJtXUnp5j/NTsOo5h395+U5wfUi8V4Te +S88+IfNRM3mlUapEMSDwFNBkb0a8DInz8qz+tGd2Tr/a5NAJYN5VFdijTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDJaug9XEdAp +i7WBLaiSl+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0cAMEQCIH5QOeAf +3PiVHEKMcXcxAppBnzEIYbaIXknhlPFU7kvqAiBI9QgnKOCMv+jCBCb/wljrf8wN +HAC1mvqb8Hl5LPgLLA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..c45ba9cd --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAP4Lv47rQS4NRUD1SnBQuWMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BN6xSbnK7x8l5yO5SAdqmC/CD0B6OM5/6Bdsync6ToQvQMi6Z8j8sLsnmKn2CwP7 +9pJbLsg3hQpI5FbMhh7JNk+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDJaug9XEdApi7WBLaiS +l+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0gAMEUCIQDOcw+nzAc2zK8d ++FVp+f3lesZLTzmR6dgAPnr+WSaDLQIgY6cHZXMEZu7IC/AHq1klkzXqObRBBQgR +C4a/Uu57KfY= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/da25f54af5bd8433c4e948e88e7bbd9c760c930251f332201eb8cad36c01acd5_sk b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/da25f54af5bd8433c4e948e88e7bbd9c760c930251f332201eb8cad36c01acd5_sk new file mode 100755 index 00000000..a8597fa9 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/da25f54af5bd8433c4e948e88e7bbd9c760c930251f332201eb8cad36c01acd5_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgqXt+hjpIl7NG+cdK +ms+lUWovEpW5CcgrKDgbQD/0C2uhRANCAASMvjHhP++M6WpifzqCgC28/ah7fcpC +jpXtKSZP8Uo+db+Nwc4V3e9PKYy1zKpf5hG1u4tgIct470yOcaKXmkfq +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem new file mode 100644 index 00000000..f42560b7 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQLm4LOW7TOEzwz2CjBgQvszAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEjL4x4T/vjOlqYn86goAtvP2oe33KQo6V +7SkmT/FKPnW/jcHOFd3vTymMtcyqX+YRtbuLYCHLeO9MjnGil5pH6qNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgMlq6D1cR0CmL +tYEtqJKX491S1mxAiZzaK0PJQgyyGGgwCgYIKoZIzj0EAwIDSAAwRQIhAKqhORDD +Hd1cuyX1HnGoIkcACieomXdAH4d4kW3fbWS0AiBuktrzPquhybNWCd7yzTNeDU0L +kGaatcvjad3dCBaIBw== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt new file mode 100644 index 00000000..ef9bbf20 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt @@ -0,0 +1,16 @@ +-----BEGIN CERTIFICATE----- +MIICczCCAhqgAwIBAgIRAJE3XLFXUcy6Tklp2dWD6/EwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBvQOmSs1RcO5feZYLhl7EHkTWEp +0e26wjwYzOenFUdtug8bEkPDjY/I1b/cJBeb4MREveLZy6GXxfL3jVwxa5WjgaMw +gaAwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcD +AjAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIOEClGNVShM2a2AJA+4QjQDnx8Aw +izEy1Sjd+rtVQESeMDQGA1UdEQQtMCuCFnBlZXIwLm9yZzEuZXhhbXBsZS5jb22C +BXBlZXIwggpwZWVyMC1vcmcxMAoGCCqGSM49BAMCA0cAMEQCIEWnFeGvigEHsbpT +yeU6rDk8JYDQLhdcBGN33BJQzZuVAiBfRu81mf1YYgCdE1PRZ/p6nV4WPwtdGbfM +NU8TBzuFdg== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key new file mode 100755 index 00000000..0e50f82c --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgTqXXGD3L7uMmwvfN +RQzlRD5YfFXnDXhDRbG5DB0DMmChRANCAAQb0DpkrNUXDuX3mWC4ZexB5E1hKdHt +usI8GMznpxVHbboPGxJDw42PyNW/3CQXm+DERL3i2cuhl8Xy941cMWuV +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem new file mode 100644 index 00000000..35e2f597 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAOjRDJSEnySEM3dZhGnVUk8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJtXUnp5j/NTsOo5h395+U5wfUi8V4Te +S88+IfNRM3mlUapEMSDwFNBkb0a8DInz8qz+tGd2Tr/a5NAJYN5VFdijTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDJaug9XEdAp +i7WBLaiSl+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0cAMEQCIH5QOeAf +3PiVHEKMcXcxAppBnzEIYbaIXknhlPFU7kvqAiBI9QgnKOCMv+jCBCb/wljrf8wN +HAC1mvqb8Hl5LPgLLA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..c45ba9cd --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAP4Lv47rQS4NRUD1SnBQuWMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BN6xSbnK7x8l5yO5SAdqmC/CD0B6OM5/6Bdsync6ToQvQMi6Z8j8sLsnmKn2CwP7 +9pJbLsg3hQpI5FbMhh7JNk+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDJaug9XEdApi7WBLaiS +l+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0gAMEUCIQDOcw+nzAc2zK8d ++FVp+f3lesZLTzmR6dgAPnr+WSaDLQIgY6cHZXMEZu7IC/AHq1klkzXqObRBBQgR +C4a/Uu57KfY= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/d589dae509a76ddafeb9e45ce66b143529080e5144282038bc1daa4faa63cd57_sk b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/d589dae509a76ddafeb9e45ce66b143529080e5144282038bc1daa4faa63cd57_sk new file mode 100755 index 00000000..f4f1e717 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/d589dae509a76ddafeb9e45ce66b143529080e5144282038bc1daa4faa63cd57_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgZBoyXofwoIEQLwpS +eotwphO+QsdnaaTFdVJvPVqPKyOhRANCAAQdEg+0urG2qAqgFtaoCfJNmEMRkvlk +D9OcIsftTguGgjeYNmRhI6fjiajzUYzwCdhAPCejYGI7UojOXET8p6nD +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem new file mode 100644 index 00000000..49201382 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQQlWT/r3rjNP/pmhZmzXxdjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEHRIPtLqxtqgKoBbWqAnyTZhDEZL5ZA/T +nCLH7U4LhoI3mDZkYSOn44mo81GM8AnYQDwno2BiO1KIzlxE/Kepw6NNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgMlq6D1cR0CmL +tYEtqJKX491S1mxAiZzaK0PJQgyyGGgwCgYIKoZIzj0EAwIDSAAwRQIhAPY3Vv8D +X+SEl8zwv0DxkLeEACmD0IQg9N/Nn0gdJlObAiB7Bbmli2VjoK69AfuqOn7TaE2F +BWJKfi4Qq9A5fxEPdw== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt new file mode 100644 index 00000000..59baf960 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt @@ -0,0 +1,16 @@ +-----BEGIN CERTIFICATE----- +MIICczCCAhqgAwIBAgIRAJMPgvCAF60FgmAIBpbXs+4wCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEVcT/yTG96g8/t7BQMUkwcunFhD +4h6gQSigVeAvehGaeLTLoGlPTI+J0TFMOuSYLQ1dcQlMyBQ/qUxz2/YCG82jgaMw +gaAwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcD +AjAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIOEClGNVShM2a2AJA+4QjQDnx8Aw +izEy1Sjd+rtVQESeMDQGA1UdEQQtMCuCFnBlZXIxLm9yZzEuZXhhbXBsZS5jb22C +BXBlZXIxggpwZWVyMS1vcmcxMAoGCCqGSM49BAMCA0cAMEQCIDH9mc0FZQhUVI79 +3OHf8U1h3RX7KXUvPYxFWXiRAl7AAiAPbFMfrOp1kI9TGQb32pkBaCaqcu5ywQKH +WNi7sJkEJA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key new file mode 100755 index 00000000..c1063a75 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgqtHwU4bmDiYng9lz +5sXQofYFDL+sz5x62tcmVagrH5uhRANCAARFXE/8kxveoPP7ewUDFJMHLpxYQ+Ie +oEEooFXgL3oRmni0y6BpT0yPidExTDrkmC0NXXEJTMgUP6lMc9v2AhvN +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/tlsca/e1029463554a13366b600903ee108d00e7c7c0308b3132d528ddfabb5540449e_sk b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/tlsca/e1029463554a13366b600903ee108d00e7c7c0308b3132d528ddfabb5540449e_sk new file mode 100755 index 00000000..5e7d9b76 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/tlsca/e1029463554a13366b600903ee108d00e7c7c0308b3132d528ddfabb5540449e_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgXr8JctituzEzRa7j +wcqU1bOOoUkvQLEB4jzk5LRVl4+hRANCAARoL15ffVzRhteNdtZts9grgSquY2dn +0UOeDGmr4XVd5Bz5Tz2TiJxOmBostM8aWegYDUQHkT5mdBcv+TgJHPse +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem new file mode 100644 index 00000000..35e2f597 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAOjRDJSEnySEM3dZhGnVUk8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJtXUnp5j/NTsOo5h395+U5wfUi8V4Te +S88+IfNRM3mlUapEMSDwFNBkb0a8DInz8qz+tGd2Tr/a5NAJYN5VFdijTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDJaug9XEdAp +i7WBLaiSl+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0cAMEQCIH5QOeAf +3PiVHEKMcXcxAppBnzEIYbaIXknhlPFU7kvqAiBI9QgnKOCMv+jCBCb/wljrf8wN +HAC1mvqb8Hl5LPgLLA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..c45ba9cd --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAP4Lv47rQS4NRUD1SnBQuWMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BN6xSbnK7x8l5yO5SAdqmC/CD0B6OM5/6Bdsync6ToQvQMi6Z8j8sLsnmKn2CwP7 +9pJbLsg3hQpI5FbMhh7JNk+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDJaug9XEdApi7WBLaiS +l+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0gAMEUCIQDOcw+nzAc2zK8d ++FVp+f3lesZLTzmR6dgAPnr+WSaDLQIgY6cHZXMEZu7IC/AHq1klkzXqObRBBQgR +C4a/Uu57KfY= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/54cd3c83ff3f5afbbd3b439f2c9ac99c2abf426b75b291bb5ca6ec11385c2b06_sk b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/54cd3c83ff3f5afbbd3b439f2c9ac99c2abf426b75b291bb5ca6ec11385c2b06_sk new file mode 100755 index 00000000..80a17264 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/54cd3c83ff3f5afbbd3b439f2c9ac99c2abf426b75b291bb5ca6ec11385c2b06_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgs06mwimGWsDRF813 +CJ4XW4C4tD3Ggh75HtfR+grjchqhRANCAASbV1J6eY/zU7DqOYd/eflOcH1IvFeE +3kvPPiHzUTN5pVGqRDEg8BTQZG9GvAyJ8/Ks/rRndk6/2uTQCWDeVRXY +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem new file mode 100644 index 00000000..35e2f597 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAOjRDJSEnySEM3dZhGnVUk8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJtXUnp5j/NTsOo5h395+U5wfUi8V4Te +S88+IfNRM3mlUapEMSDwFNBkb0a8DInz8qz+tGd2Tr/a5NAJYN5VFdijTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDJaug9XEdAp +i7WBLaiSl+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0cAMEQCIH5QOeAf +3PiVHEKMcXcxAppBnzEIYbaIXknhlPFU7kvqAiBI9QgnKOCMv+jCBCb/wljrf8wN +HAC1mvqb8Hl5LPgLLA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt new file mode 100644 index 00000000..322e35bd --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICPDCCAeKgAwIBAgIRAPnWT9T98v+VEc4tcwEVQsEwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFEqff+k9llGWR2zLsihNduT6dhg +P5T3kQGG9pelnfZYEZX21etI9BWxDhBZ5WViUV3mWnju+E6Y4Mqjrxdu25qjbDBq +MA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDhApRjVUoTNmtgCQPuEI0A58fAMIsx +MtUo3fq7VUBEnjAKBggqhkjOPQQDAgNIADBFAiEA43nrey0WUFHWn2e8/3MA3EkR +3PSequcqzQFGIROGKhkCIHOVIqhc/TonNbsFufSXRgwSq7XBhd3siDHq0UV6ICQR +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key new file mode 100755 index 00000000..11bcd586 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgQ0thSMwpcbeb4Wg9 +72V4KVKd3SfnBgXbwo4ocSWQYrmhRANCAARRKn3/pPZZRlkdsy7IoTXbk+nYYD+U +95EBhvaXpZ32WBGV9tXrSPQVsQ4QWeVlYlFd5lp47vhOmODKo68Xbtua +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/tlsca.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/tlsca.example.com-cert.pem new file mode 100644 index 00000000..b90a5119 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/tlsca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRAO9eQIvFWTVu6P3wG7qyxwMwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQVkav3qnUaq2sT5fXa +w7PC66C1tNvm0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3Lc +Wuj9o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6Sh +mD8jYjAKBggqhkjOPQQDAgNIADBFAiEAj8nHgKRVcScP5atiRilix5AULPsxEcLx +tkazxYlUqb0CIHuBnz2s+DCiAfvQyBgsN6vUzoFfwylS3+e7o/sgpU3R +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem new file mode 100644 index 00000000..c4397292 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRANCxm2czfYrucVdiy9FiyMEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWVXNlcjFAb3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABA51z4L1BdukxjjTQShDB7DSsLivO02q +XM8poWFbA43VJvcO3oD1JOEqqs5pI3YoatK8aFrpEyhHPW8jQkqPi2OjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDJaug9XEdAp +i7WBLaiSl+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0gAMEUCIQDM7vxT +qO/P5AHzgiUvcDde/EC7vWvVqaz3h0jlnGP5rQIgQrm+U6A/B6YH8cxB3uocRBTp +eyzSmcT+bCStiPqONfc= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..c45ba9cd --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAP4Lv47rQS4NRUD1SnBQuWMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BN6xSbnK7x8l5yO5SAdqmC/CD0B6OM5/6Bdsync6ToQvQMi6Z8j8sLsnmKn2CwP7 +9pJbLsg3hQpI5FbMhh7JNk+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDJaug9XEdApi7WBLaiS +l+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0gAMEUCIQDOcw+nzAc2zK8d ++FVp+f3lesZLTzmR6dgAPnr+WSaDLQIgY6cHZXMEZu7IC/AHq1klkzXqObRBBQgR +C4a/Uu57KfY= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/8bbd58817cf4be0f1cd5d666dcbbf5fe99231766c069c079a73ce710900a0ca3_sk b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/8bbd58817cf4be0f1cd5d666dcbbf5fe99231766c069c079a73ce710900a0ca3_sk new file mode 100755 index 00000000..e7c435c2 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/8bbd58817cf4be0f1cd5d666dcbbf5fe99231766c069c079a73ce710900a0ca3_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgSGS1yuWEqweLrU64 +aGf7iTxOEw20vsTv9OL+slFR+F+hRANCAAQOdc+C9QXbpMY400EoQwew0rC4rztN +qlzPKaFhWwON1Sb3Dt6A9SThKqrOaSN2KGrSvGha6RMoRz1vI0JKj4tj +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem new file mode 100644 index 00000000..c4397292 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRANCxm2czfYrucVdiy9FiyMEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWVXNlcjFAb3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABA51z4L1BdukxjjTQShDB7DSsLivO02q +XM8poWFbA43VJvcO3oD1JOEqqs5pI3YoatK8aFrpEyhHPW8jQkqPi2OjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDJaug9XEdAp +i7WBLaiSl+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0gAMEUCIQDM7vxT +qO/P5AHzgiUvcDde/EC7vWvVqaz3h0jlnGP5rQIgQrm+U6A/B6YH8cxB3uocRBTp +eyzSmcT+bCStiPqONfc= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt new file mode 100644 index 00000000..6c59ef0f --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICOzCCAeGgAwIBAgIQY2lEiM8AY6tsR6LVeyUXnjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZVc2VyMUBvcmcxLmV4YW1wbGUuY29t +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExyIv2ATqezL9TRZYYDB7tT4E2T4b +u5+bPL/8BlzQMDyLtbk2dJb8/GgrknG8YtUDmWVSk8l7F3KGPE9011tD0qNsMGow +DgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIOEClGNVShM2a2AJA+4QjQDnx8AwizEy +1Sjd+rtVQESeMAoGCCqGSM49BAMCA0gAMEUCIQCvc5EMYntlQqAw1foauw07ZCF0 +B9s2cWtN6rZVZ/lTiAIgfwWrEIkBdKqktGrEe1kj4E6u3PCCIGm3ORNQL/zoNSU= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key new file mode 100755 index 00000000..648a30ff --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgVm9qFTNr7uvv0Qt9 +tfLRXIAPMkd5o+JEPglwWkiNMFWhRANCAATHIi/YBOp7Mv1NFlhgMHu1PgTZPhu7 +n5s8v/wGXNAwPIu1uTZ0lvz8aCuScbxi1QOZZVKTyXsXcoY8T3TXW0PS +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/ca/33d617d5db2c05302f25b72f8c527d2a54b64931dc1452281c515f51e535aaa7_sk b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/ca/33d617d5db2c05302f25b72f8c527d2a54b64931dc1452281c515f51e535aaa7_sk new file mode 100755 index 00000000..cf50e198 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/ca/33d617d5db2c05302f25b72f8c527d2a54b64931dc1452281c515f51e535aaa7_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgPmgTgRLPSJIHhN+J +evZiEUj7+KjcWKcnTf2bR6tifOehRANCAASbbL7sby7y+1hDdkOIagu++4Cc4KLE +vvAxaamEMX5q9EU8V248IxkkNEfzN2CwInX1le3xYT3lWa4nSu4u4tfH +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..1ce95e85 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQND+vNQvf96L9SYwvQTBDjTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +m2y+7G8u8vtYQ3ZDiGoLvvuAnOCixL7wMWmphDF+avRFPFduPCMZJDRH8zdgsCJ1 +9ZXt8WE95VmuJ0ruLuLXx6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgM9YX1dssBTAvJbcvjFJ9 +KlS2STHcFFIoHFFfUeU1qqcwCgYIKoZIzj0EAwIDRwAwRAIgCwYcTSZrtNVKm/Zs +U4o5DJNdISYx6ccTjRTDGU6LHwICIAi4L9AvsWBKPLoI1T+/x1ryygaUdlA/Rf8k +5wy4c0FT +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem new file mode 100644 index 00000000..66891db2 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJuAabxDD1W69XuRdd0x1/8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAtvxQJRW91s20gvOVLRoidAIjeJ9hH+ +h4V2UyIiHlv9cKFI5473jABQM879//0brYQAe2+K8+Oz9F7Z00clmLyjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDPWF9XbLAUw +LyW3L4xSfSpUtkkx3BRSKBxRX1HlNaqnMAoGCCqGSM49BAMCA0gAMEUCIQCtQu+f +QRaMGsvDPsGnd5QkAFij58WC5dDtlUS64C52QgIgcLRRlKsACM0Cwa7x2unXpQ0U +pdHlel+94ytp93+Axhs= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..1ce95e85 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQND+vNQvf96L9SYwvQTBDjTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +m2y+7G8u8vtYQ3ZDiGoLvvuAnOCixL7wMWmphDF+avRFPFduPCMZJDRH8zdgsCJ1 +9ZXt8WE95VmuJ0ruLuLXx6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgM9YX1dssBTAvJbcvjFJ9 +KlS2STHcFFIoHFFfUeU1qqcwCgYIKoZIzj0EAwIDRwAwRAIgCwYcTSZrtNVKm/Zs +U4o5DJNdISYx6ccTjRTDGU6LHwICIAi4L9AvsWBKPLoI1T+/x1ryygaUdlA/Rf8k +5wy4c0FT +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem new file mode 100644 index 00000000..66891db2 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJuAabxDD1W69XuRdd0x1/8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAtvxQJRW91s20gvOVLRoidAIjeJ9hH+ +h4V2UyIiHlv9cKFI5473jABQM879//0brYQAe2+K8+Oz9F7Z00clmLyjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDPWF9XbLAUw +LyW3L4xSfSpUtkkx3BRSKBxRX1HlNaqnMAoGCCqGSM49BAMCA0gAMEUCIQCtQu+f +QRaMGsvDPsGnd5QkAFij58WC5dDtlUS64C52QgIgcLRRlKsACM0Cwa7x2unXpQ0U +pdHlel+94ytp93+Axhs= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..1ce95e85 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQND+vNQvf96L9SYwvQTBDjTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +m2y+7G8u8vtYQ3ZDiGoLvvuAnOCixL7wMWmphDF+avRFPFduPCMZJDRH8zdgsCJ1 +9ZXt8WE95VmuJ0ruLuLXx6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgM9YX1dssBTAvJbcvjFJ9 +KlS2STHcFFIoHFFfUeU1qqcwCgYIKoZIzj0EAwIDRwAwRAIgCwYcTSZrtNVKm/Zs +U4o5DJNdISYx6ccTjRTDGU6LHwICIAi4L9AvsWBKPLoI1T+/x1ryygaUdlA/Rf8k +5wy4c0FT +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/2061a8f85f429a7537b94ecec99f965dfd6a82c2bc930cfb2b610ae902a55f54_sk b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/2061a8f85f429a7537b94ecec99f965dfd6a82c2bc930cfb2b610ae902a55f54_sk new file mode 100755 index 00000000..95dbdef8 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/2061a8f85f429a7537b94ecec99f965dfd6a82c2bc930cfb2b610ae902a55f54_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg7xcV3kqbOVfGytlt +CQemuRQpKmsv9J6MVtotCqM07PmhRANCAAQKELpP1/FbzTQx9UN7kQrMpHMbN6VI +/ogCv07aJrRKOxyTbSrAwSUWrXDCADVPCMg0yyhEtTh6RHrw8/dpSQCI +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem new file mode 100644 index 00000000..0af88613 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQTwFB0o94enEumYPyOiNlLjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEChC6T9fxW800MfVDe5EKzKRzGzelSP6I +Ar9O2ia0Sjsck20qwMElFq1wwgA1TwjINMsoRLU4ekR68PP3aUkAiKNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgM9YX1dssBTAv +JbcvjFJ9KlS2STHcFFIoHFFfUeU1qqcwCgYIKoZIzj0EAwIDSAAwRQIhAPxKpYhx +tt5iFOwbOoAtVwdQrGXL3szd4Xta/sCKi+XzAiAq1pRk5y1jdqmJn93bSlDqkjCP +h7Jl6lQ0AGE+HHcx6w== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt new file mode 100644 index 00000000..ee492d04 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt @@ -0,0 +1,16 @@ +-----BEGIN CERTIFICATE----- +MIICdDCCAhqgAwIBAgIRANn/8Nyw0kAWFKlpcceF010wCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABIVC53Bbxse1Emvhy/+jolt2lrD9 +6N11qRtjY8cPClWZ7syB1Yii0fktJpvF73kld6WkRfXIO5BXiWkmu2m8bvqjgaMw +gaAwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcD +AjAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIIza2LfHnMG2pvhxvP6BuMZpfCoQ +pgyTWnax39lZmsykMDQGA1UdEQQtMCuCFnBlZXIwLm9yZzIuZXhhbXBsZS5jb22C +BXBlZXIwggpwZWVyMC1vcmcyMAoGCCqGSM49BAMCA0gAMEUCIQDh8feB+LnWxE2u +L/J+f3r/XZS1KGNQEV0rget+dPXc4QIgeunFhliR+wwJ1Bh72aXJjIZ/y4l0FcvB +eYPc+DG8a8U= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key new file mode 100755 index 00000000..52f1ed44 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgl6OEkTeiBO8sW9ai +j+NDTaMzOLi9BWxwye1UI9gaOaehRANCAASFQudwW8bHtRJr4cv/o6Jbdpaw/ejd +dakbY2PHDwpVme7MgdWIotH5LSabxe95JXelpEX1yDuQV4lpJrtpvG76 +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem new file mode 100644 index 00000000..66891db2 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJuAabxDD1W69XuRdd0x1/8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAtvxQJRW91s20gvOVLRoidAIjeJ9hH+ +h4V2UyIiHlv9cKFI5473jABQM879//0brYQAe2+K8+Oz9F7Z00clmLyjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDPWF9XbLAUw +LyW3L4xSfSpUtkkx3BRSKBxRX1HlNaqnMAoGCCqGSM49BAMCA0gAMEUCIQCtQu+f +QRaMGsvDPsGnd5QkAFij58WC5dDtlUS64C52QgIgcLRRlKsACM0Cwa7x2unXpQ0U +pdHlel+94ytp93+Axhs= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..1ce95e85 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQND+vNQvf96L9SYwvQTBDjTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +m2y+7G8u8vtYQ3ZDiGoLvvuAnOCixL7wMWmphDF+avRFPFduPCMZJDRH8zdgsCJ1 +9ZXt8WE95VmuJ0ruLuLXx6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgM9YX1dssBTAvJbcvjFJ9 +KlS2STHcFFIoHFFfUeU1qqcwCgYIKoZIzj0EAwIDRwAwRAIgCwYcTSZrtNVKm/Zs +U4o5DJNdISYx6ccTjRTDGU6LHwICIAi4L9AvsWBKPLoI1T+/x1ryygaUdlA/Rf8k +5wy4c0FT +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/62993ae9b25b91f739f94c69ecb2b4ceb8fb0a93854f24f3d60d15f7d330be0d_sk b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/62993ae9b25b91f739f94c69ecb2b4ceb8fb0a93854f24f3d60d15f7d330be0d_sk new file mode 100755 index 00000000..9cb46703 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/62993ae9b25b91f739f94c69ecb2b4ceb8fb0a93854f24f3d60d15f7d330be0d_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQggO1idt7qN9CnVhwX +3LjuInHGbL1O/zfrUm6g1+ozuj2hRANCAAQr7Y0EgX53WXUPLSqMoRM8PaIVOeEa +SJHmgIpu8/20CdW9NiiXcVvhZiRAHwK+gCAvAZ/8d6vDuP7FCyrrzbCd +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem new file mode 100644 index 00000000..7c4b8989 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKX2RZdUhSdYNG5J4w75/MUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCvtjQSBfndZdQ8tKoyhEzw9ohU54RpI +keaAim7z/bQJ1b02KJdxW+FmJEAfAr6AIC8Bn/x3q8O4/sULKuvNsJ2jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDPWF9XbLAUw +LyW3L4xSfSpUtkkx3BRSKBxRX1HlNaqnMAoGCCqGSM49BAMCA0cAMEQCIEAfijF2 +u/uQGo1L6hnd86ydL8YA/CbKnNb9Yp8QJft3AiBnj05aPC+YmZlt+c12/DmAA84N +hfOG4ALhki9kx3yXXw== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt new file mode 100644 index 00000000..230ae1e3 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt @@ -0,0 +1,16 @@ +-----BEGIN CERTIFICATE----- +MIICczCCAhmgAwIBAgIQTprsHIesSjvr/DkrBSbqgDAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29t +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEDysTlWe06Zz5Z4ZwcuPOBNG/WT1P +1RlDuS6v+8BY0hBKifzrIVyQjuW0sMKEMwAEcutTUuyQkx8SOUphUZioGqOBozCB +oDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMC +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgjNrYt8ecwbam+HG8/oG4xml8KhCm +DJNadrHf2VmazKQwNAYDVR0RBC0wK4IWcGVlcjEub3JnMi5leGFtcGxlLmNvbYIF +cGVlcjGCCnBlZXIxLW9yZzIwCgYIKoZIzj0EAwIDSAAwRQIhANnJ4WXlEBGVAoPV +k6m2j2XEgOY1aStJRF6LeWD2LrGVAiBqEXpR6ZlzONt0li11BoHotdMAhf2LMU3+ +iuz5YS/gxw== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key new file mode 100755 index 00000000..bdef7b97 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgM2W3IQ+I6zC3zr+Y +ETxP7xsC9LLwxfdCGJVU9O6iaaOhRANCAAQPKxOVZ7TpnPlnhnBy484E0b9ZPU/V +GUO5Lq/7wFjSEEqJ/OshXJCO5bSwwoQzAARy61NS7JCTHxI5SmFRmKga +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/tlsca/8cdad8b7c79cc1b6a6f871bcfe81b8c6697c2a10a60c935a76b1dfd9599acca4_sk b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/tlsca/8cdad8b7c79cc1b6a6f871bcfe81b8c6697c2a10a60c935a76b1dfd9599acca4_sk new file mode 100755 index 00000000..22fa267c --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/tlsca/8cdad8b7c79cc1b6a6f871bcfe81b8c6697c2a10a60c935a76b1dfd9599acca4_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgQ0rr7NeDHuanRh/l +pfsyFassnHGIKvD10V/6gfosakahRANCAASYyiXxD9CH58zbUM8Vq7FIBxOKjDt0 +Un6/ecGnWv1XZaTiVYiCFZuIr9N3xGOt6E/StjOJr2lTFJtyqo2hdy4Y +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem new file mode 100644 index 00000000..66891db2 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJuAabxDD1W69XuRdd0x1/8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAtvxQJRW91s20gvOVLRoidAIjeJ9hH+ +h4V2UyIiHlv9cKFI5473jABQM879//0brYQAe2+K8+Oz9F7Z00clmLyjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDPWF9XbLAUw +LyW3L4xSfSpUtkkx3BRSKBxRX1HlNaqnMAoGCCqGSM49BAMCA0gAMEUCIQCtQu+f +QRaMGsvDPsGnd5QkAFij58WC5dDtlUS64C52QgIgcLRRlKsACM0Cwa7x2unXpQ0U +pdHlel+94ytp93+Axhs= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..1ce95e85 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQND+vNQvf96L9SYwvQTBDjTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +m2y+7G8u8vtYQ3ZDiGoLvvuAnOCixL7wMWmphDF+avRFPFduPCMZJDRH8zdgsCJ1 +9ZXt8WE95VmuJ0ruLuLXx6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgM9YX1dssBTAvJbcvjFJ9 +KlS2STHcFFIoHFFfUeU1qqcwCgYIKoZIzj0EAwIDRwAwRAIgCwYcTSZrtNVKm/Zs +U4o5DJNdISYx6ccTjRTDGU6LHwICIAi4L9AvsWBKPLoI1T+/x1ryygaUdlA/Rf8k +5wy4c0FT +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/e9754fa82f6c8af2a0f8224f4abd9525ab61a579ea92373837efe505b9cef4aa_sk b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/e9754fa82f6c8af2a0f8224f4abd9525ab61a579ea92373837efe505b9cef4aa_sk new file mode 100755 index 00000000..2523ff04 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/e9754fa82f6c8af2a0f8224f4abd9525ab61a579ea92373837efe505b9cef4aa_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgwIUAUQoxRfNkSlmi +p7j/5ngJZMxaFiQ2Cun6fFE9MQqhRANCAAQLb8UCUVvdbNtILzlS0aInQCI3ifYR +/oeFdlMiIh5b/XChSOeO94wAUDPO/f/9G62EAHtvivPjs/Re2dNHJZi8 +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem new file mode 100644 index 00000000..66891db2 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJuAabxDD1W69XuRdd0x1/8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAtvxQJRW91s20gvOVLRoidAIjeJ9hH+ +h4V2UyIiHlv9cKFI5473jABQM879//0brYQAe2+K8+Oz9F7Z00clmLyjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDPWF9XbLAUw +LyW3L4xSfSpUtkkx3BRSKBxRX1HlNaqnMAoGCCqGSM49BAMCA0gAMEUCIQCtQu+f +QRaMGsvDPsGnd5QkAFij58WC5dDtlUS64C52QgIgcLRRlKsACM0Cwa7x2unXpQ0U +pdHlel+94ytp93+Axhs= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt new file mode 100644 index 00000000..6668de19 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICOzCCAeKgAwIBAgIRAKgoV9x60cm/QIbRs8NVI8MwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABHh5lRMg+cBPubpWQ4QyeVT9OjPs +ZppWGtoIKqNWz5LSqrbm1mf+KWazjy4fq6g52BvsC0ofjwMQ8NISVn2cw66jbDBq +MA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCCM2ti3x5zBtqb4cbz+gbjGaXwqEKYM +k1p2sd/ZWZrMpDAKBggqhkjOPQQDAgNHADBEAiA1HUa7KqTPTQlFUOpEgc7YN7co +IpGX+iBzlsvukE41BgIgWALzgHOP21DYtzxr7XkUfj+rzKGBwkXzUJH8ikzKpf0= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key new file mode 100755 index 00000000..11f98fba --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgk0re3Pu8qCVGbDPg +Q9yclBhEVeIWNIMmCvp71dQC9YuhRANCAAR4eZUTIPnAT7m6VkOEMnlU/Toz7Gaa +VhraCCqjVs+S0qq25tZn/ilms48uH6uoOdgb7AtKH48DEPDSElZ9nMOu +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/tlsca.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/tlsca.example.com-cert.pem new file mode 100644 index 00000000..b90a5119 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/tlsca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRAO9eQIvFWTVu6P3wG7qyxwMwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQVkav3qnUaq2sT5fXa +w7PC66C1tNvm0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3Lc +Wuj9o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6Sh +mD8jYjAKBggqhkjOPQQDAgNIADBFAiEAj8nHgKRVcScP5atiRilix5AULPsxEcLx +tkazxYlUqb0CIHuBnz2s+DCiAfvQyBgsN6vUzoFfwylS3+e7o/sgpU3R +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem new file mode 100644 index 00000000..2ed5c08e --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAM0I/3xBuPvlatp8ccb4jlswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWVXNlcjFAb3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABDT3tuCOxr6hA0XSKRz2JFpMBEFR9zkF +XTF6b1dr8R+tbNCb7qQ0R0kJS/3vlFAhm5rW+ARpPX6w0IfP/Rb5EJujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDPWF9XbLAUw +LyW3L4xSfSpUtkkx3BRSKBxRX1HlNaqnMAoGCCqGSM49BAMCA0gAMEUCIQC9JEUq +I8hHqpKanrgr+hw3yQiM0OwYpAfNVcdhDgjdVQIgLoWp2Zg1ZcmTYRziym3xuJgO +uVihuwelIe4a2dNrKjs= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..1ce95e85 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQND+vNQvf96L9SYwvQTBDjTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +m2y+7G8u8vtYQ3ZDiGoLvvuAnOCixL7wMWmphDF+avRFPFduPCMZJDRH8zdgsCJ1 +9ZXt8WE95VmuJ0ruLuLXx6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgM9YX1dssBTAvJbcvjFJ9 +KlS2STHcFFIoHFFfUeU1qqcwCgYIKoZIzj0EAwIDRwAwRAIgCwYcTSZrtNVKm/Zs +U4o5DJNdISYx6ccTjRTDGU6LHwICIAi4L9AvsWBKPLoI1T+/x1ryygaUdlA/Rf8k +5wy4c0FT +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/15146807ec535a8de90669280612d61c38317b73e13147e4d475ddb27e3aa09a_sk b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/15146807ec535a8de90669280612d61c38317b73e13147e4d475ddb27e3aa09a_sk new file mode 100755 index 00000000..b7073aec --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/15146807ec535a8de90669280612d61c38317b73e13147e4d475ddb27e3aa09a_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgRMvZF00suwl2BXiX +KG0doZDRcoAwgZF5Uw15S21553ihRANCAAQ097bgjsa+oQNF0ikc9iRaTARBUfc5 +BV0xem9Xa/EfrWzQm+6kNEdJCUv975RQIZua1vgEaT1+sNCHz/0W+RCb +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem new file mode 100644 index 00000000..2ed5c08e --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAM0I/3xBuPvlatp8ccb4jlswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWVXNlcjFAb3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABDT3tuCOxr6hA0XSKRz2JFpMBEFR9zkF +XTF6b1dr8R+tbNCb7qQ0R0kJS/3vlFAhm5rW+ARpPX6w0IfP/Rb5EJujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDPWF9XbLAUw +LyW3L4xSfSpUtkkx3BRSKBxRX1HlNaqnMAoGCCqGSM49BAMCA0gAMEUCIQC9JEUq +I8hHqpKanrgr+hw3yQiM0OwYpAfNVcdhDgjdVQIgLoWp2Zg1ZcmTYRziym3xuJgO +uVihuwelIe4a2dNrKjs= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.crt b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.crt new file mode 100644 index 00000000..e3d4e508 --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICOzCCAeGgAwIBAgIQTC2OuxD0GhMhFroDeAJ3CTAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZVc2VyMUBvcmcyLmV4YW1wbGUuY29t +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEzTqz7ZYoqHmw0IUTBDniLe8bngwz +nQlAhl0Ya3NrDtmHOFzS8pd+L/GZn3ot4JC9Luu7SPmg8LVceH8MW4VmX6NsMGow +DgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIIza2LfHnMG2pvhxvP6BuMZpfCoQpgyT +Wnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQCxkh5t6B6h0K6wrwtJE/3Q+xdr ++im9b3onN08mdA71DQIgYbdSWJ5noVnyo8dUuYp+b6qCwE3MF9rZ/e0TJHc1uog= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.key b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.key new file mode 100755 index 00000000..e423415b --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgWgwDQY/XoNIrFuqM +3M3P3H1pHt/xztmbqChL+fpc0hGhRANCAATNOrPtliioebDQhRMEOeIt7xueDDOd +CUCGXRhrc2sO2Yc4XNLyl34v8Zmfei3gkL0u67tI+aDwtVx4fwxbhWZf +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/explorer-artifacts/config.json b/src/agent/k8s/cluster_resources/fabric-1.1/resources/explorer-artifacts/config.json new file mode 100644 index 00000000..8b8831cb --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/explorer-artifacts/config.json @@ -0,0 +1,77 @@ +{ + "GOPATH": "/opt/gopath", + "channel": "businesschannel", + "enableTls": false, + "eventWaitTime": "30000", + "host": "explorer", + "keyValueStore": "/tmp/fabric-client-kvs", + "mysql": { + "database": "fabricexplorer", + "host": "localhost", + "passwd": "root", + "port": "3306", + "username": "root" + }, + "network-config": { + "orderer": [ + { + "server-host": "orderer0.ordererorg", + "url": "grpc://orderer0:7050" + } + ], + "org1": { + "admin": { + "cert": "/first-network/crypto-config/peerOrganizations/org1/users/Admin@org1/msp/signcerts", + "key": "/first-network/crypto-config/peerOrganizations/org1/users/Admin@org1/msp/keystore" + }, + "ca": "http://ca-org1:7054", + "mspid": "Org1MSP", + "name": "peerorg1", + "peer0": { + "events": "grpc://peer0-org1:7053", + "requests": "grpc://peer0-org1:7051", + "server-hostname": "peer0.org1", + "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org1/peers/peer0.org1/tls/ca.crt" + }, + "peer1": { + "events": "grpc://peer1-org1:7053", + "requests": "grpc://peer1-org1:7051", + "server-hostname": "peer1.org1", + "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org1/peers/peer1.org1/tls/ca.crt" + } + }, + "org2": { + "admin": { + "cert": "/first-network/crypto-config/peerOrganizations/org2/users/Admin@org2/msp/signcerts", + "key": "/first-network/crypto-config/peerOrganizations/org2/users/Admin@org2/msp/keystore" + }, + "ca": "http://ca-org2:7054", + "mspid": "Org2MSP", + "name": "peerorg2", + "peer0": { + "events": "grpc://peer0-org2:7053", + "requests": "grpc://peer0-org2:7051", + "server-hostname": "peer0.org2", + "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org2/peers/peer0.org2/tls/ca.crt" + }, + "peer1": { + "events": "grpc://peer1-org2:7053", + "requests": "grpc://peer1-org2:7051", + "server-hostname": "peer1.org2", + "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org2/peers/peer1.org2/tls/ca.crt" + } + } + }, + "org": [ + "org1", + "org2" + ], + "peer": "peer0", + "port": "8080", + "users": [ + { + "secret": "adminpw", + "username": "admin" + } + ] +} diff --git a/src/agent/k8s/cluster_resources/fabric-1.1/resources/explorer-artifacts/fabricexplorer.sql b/src/agent/k8s/cluster_resources/fabric-1.1/resources/explorer-artifacts/fabricexplorer.sql new file mode 100644 index 00000000..557abb4c --- /dev/null +++ b/src/agent/k8s/cluster_resources/fabric-1.1/resources/explorer-artifacts/fabricexplorer.sql @@ -0,0 +1,115 @@ +/* + Navicat MySQL Data Transfer + + Source Server : 172.16.10.162 + Source Server Type : MySQL + Source Server Version : 50635 + Source Host : 172.16.10.162 + Source Database : fabricexplorer + + Target Server Type : MySQL + Target Server Version : 50635 + File Encoding : utf-8 + + Date: 07/07/2017 10:14:31 AM +*/ + +DROP DATABASE IF EXISTS `fabricexplorer`; + +CREATE DATABASE fabricexplorer; + +use fabricexplorer; +SET NAMES utf8; +SET FOREIGN_KEY_CHECKS = 0; + +-- ---------------------------- +-- Table structure for `blocks` +-- ---------------------------- +DROP TABLE IF EXISTS `blocks`; +CREATE TABLE `blocks` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', + `blocknum` int(11) DEFAULT NULL, + `datahash` varchar(256) DEFAULT NULL, + `prehash` varchar(256) DEFAULT NULL, + `channelname` varchar(128) DEFAULT NULL, + `txcount` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='blocks'; + +-- ---------------------------- +-- Table structure for `chaincodes` +-- ---------------------------- +DROP TABLE IF EXISTS `chaincodes`; +CREATE TABLE `chaincodes` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(255) DEFAULT NULL, + `version` varchar(255) DEFAULT NULL, + `path` varchar(255) DEFAULT NULL, + `channelname` varchar(255) DEFAULT NULL, + `txcount` int(11) DEFAULT '0', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT; + +-- ---------------------------- +-- Table structure for `channel` +-- ---------------------------- +DROP TABLE IF EXISTS `channel`; +CREATE TABLE `channel` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', + `name` varchar(64) DEFAULT NULL, + `blocks` int(11) DEFAULT NULL, + `trans` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='channel'; + +-- ---------------------------- +-- Table structure for `peer` +-- ---------------------------- +DROP TABLE IF EXISTS `peer`; +CREATE TABLE `peer` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', + `org` int(11) DEFAULT NULL, + `name` varchar(64) DEFAULT NULL, + `mspid` varchar(64) DEFAULT NULL, + `requests` varchar(64) DEFAULT NULL, + `events` varchar(64) DEFAULT NULL, + `server_hostname` varchar(64) DEFAULT NULL, + `createdt` datetime DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='peer'; + +-- ---------------------------- +-- Table structure for `peer_ref_channel` +-- ---------------------------- +DROP TABLE IF EXISTS `peer_ref_channel`; +CREATE TABLE `peer_ref_channel` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', + `peerid` int(11) DEFAULT NULL, + `channelid` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT=''; + +-- ---------------------------- +-- Table structure for `transaction` +-- ---------------------------- +DROP TABLE IF EXISTS `transaction`; +CREATE TABLE `transaction` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', + `channelname` varchar(64) DEFAULT NULL, + `blockid` int(11) DEFAULT NULL, + `txhash` varchar(256) DEFAULT NULL, + `createdt` datetime DEFAULT NULL, + `chaincodename` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='transtaion'; + +-- ---------------------------- +-- Table structure for `write_lock` +-- ---------------------------- +DROP TABLE IF EXISTS `write_lock`; +CREATE TABLE `write_lock` ( + `write_lock` int(1) NOT NULL AUTO_INCREMENT, + PRIMARY KEY (`write_lock`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_bin; + +SET FOREIGN_KEY_CHECKS = 1; diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/chaincodes/chaincode_example02/chaincode_example02.go b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/chaincodes/chaincode_example02/chaincode_example02.go new file mode 100644 index 00000000..53438066 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/chaincodes/chaincode_example02/chaincode_example02.go @@ -0,0 +1,199 @@ +/* +Copyright IBM Corp. 2016 All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package main + +//WARNING - this chaincode's ID is hard-coded in chaincode_example04 to illustrate one way of +//calling chaincode from a chaincode. If this example is modified, chaincode_example04.go has +//to be modified as well with the new ID of chaincode_example02. +//chaincode_example05 show's how chaincode ID can be passed in as a parameter instead of +//hard-coding. + +import ( + "fmt" + "strconv" + + "github.com/hyperledger/fabric/core/chaincode/shim" + pb "github.com/hyperledger/fabric/protos/peer" +) + +// SimpleChaincode example simple Chaincode implementation +type SimpleChaincode struct { +} + +func (t *SimpleChaincode) Init(stub shim.ChaincodeStubInterface) pb.Response { + fmt.Println("ex02 Init") + _, args := stub.GetFunctionAndParameters() + var A, B string // Entities + var Aval, Bval int // Asset holdings + var err error + + if len(args) != 4 { + return shim.Error("Incorrect number of arguments. Expecting 4") + } + + // Initialize the chaincode + A = args[0] + Aval, err = strconv.Atoi(args[1]) + if err != nil { + return shim.Error("Expecting integer value for asset holding") + } + B = args[2] + Bval, err = strconv.Atoi(args[3]) + if err != nil { + return shim.Error("Expecting integer value for asset holding") + } + fmt.Printf("Aval = %d, Bval = %d\n", Aval, Bval) + + // Write the state to the ledger + err = stub.PutState(A, []byte(strconv.Itoa(Aval))) + if err != nil { + return shim.Error(err.Error()) + } + + err = stub.PutState(B, []byte(strconv.Itoa(Bval))) + if err != nil { + return shim.Error(err.Error()) + } + + return shim.Success(nil) +} + +func (t *SimpleChaincode) Invoke(stub shim.ChaincodeStubInterface) pb.Response { + fmt.Println("ex02 Invoke") + function, args := stub.GetFunctionAndParameters() + if function == "invoke" { + // Make payment of X units from A to B + return t.invoke(stub, args) + } else if function == "delete" { + // Deletes an entity from its state + return t.delete(stub, args) + } else if function == "query" { + // the old "Query" is now implemtned in invoke + return t.query(stub, args) + } + + return shim.Error("Invalid invoke function name. Expecting \"invoke\" \"delete\" \"query\"") +} + +// Transaction makes payment of X units from A to B +func (t *SimpleChaincode) invoke(stub shim.ChaincodeStubInterface, args []string) pb.Response { + var A, B string // Entities + var Aval, Bval int // Asset holdings + var X int // Transaction value + var err error + + if len(args) != 3 { + return shim.Error("Incorrect number of arguments. Expecting 3") + } + + A = args[0] + B = args[1] + + // Get the state from the ledger + // TODO: will be nice to have a GetAllState call to ledger + Avalbytes, err := stub.GetState(A) + if err != nil { + return shim.Error("Failed to get state") + } + if Avalbytes == nil { + return shim.Error("Entity not found") + } + Aval, _ = strconv.Atoi(string(Avalbytes)) + + Bvalbytes, err := stub.GetState(B) + if err != nil { + return shim.Error("Failed to get state") + } + if Bvalbytes == nil { + return shim.Error("Entity not found") + } + Bval, _ = strconv.Atoi(string(Bvalbytes)) + + // Perform the execution + X, err = strconv.Atoi(args[2]) + if err != nil { + return shim.Error("Invalid transaction amount, expecting a integer value") + } + Aval = Aval - X + Bval = Bval + X + fmt.Printf("Aval = %d, Bval = %d\n", Aval, Bval) + + // Write the state back to the ledger + err = stub.PutState(A, []byte(strconv.Itoa(Aval))) + if err != nil { + return shim.Error(err.Error()) + } + + err = stub.PutState(B, []byte(strconv.Itoa(Bval))) + if err != nil { + return shim.Error(err.Error()) + } + + return shim.Success(nil) +} + +// Deletes an entity from state +func (t *SimpleChaincode) delete(stub shim.ChaincodeStubInterface, args []string) pb.Response { + if len(args) != 1 { + return shim.Error("Incorrect number of arguments. Expecting 1") + } + + A := args[0] + + // Delete the key from the state in ledger + err := stub.DelState(A) + if err != nil { + return shim.Error("Failed to delete state") + } + + return shim.Success(nil) +} + +// query callback representing the query of a chaincode +func (t *SimpleChaincode) query(stub shim.ChaincodeStubInterface, args []string) pb.Response { + var A string // Entities + var err error + + if len(args) != 1 { + return shim.Error("Incorrect number of arguments. Expecting name of the person to query") + } + + A = args[0] + + // Get the state from the ledger + Avalbytes, err := stub.GetState(A) + if err != nil { + jsonResp := "{\"Error\":\"Failed to get state for " + A + "\"}" + return shim.Error(jsonResp) + } + + if Avalbytes == nil { + jsonResp := "{\"Error\":\"Nil amount for " + A + "\"}" + return shim.Error(jsonResp) + } + + jsonResp := "{\"Name\":\"" + A + "\",\"Amount\":\"" + string(Avalbytes) + "\"}" + fmt.Printf("Query Response:%s\n", jsonResp) + return shim.Success(Avalbytes) +} + +func main() { + err := shim.Start(new(SimpleChaincode)) + if err != nil { + fmt.Printf("Error starting Simple chaincode: %s", err) + } +} diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/channel-artifacts/Org1MSPanchors.tx b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/channel-artifacts/Org1MSPanchors.tx new file mode 100644 index 00000000..73feca28 Binary files /dev/null and b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/channel-artifacts/Org1MSPanchors.tx differ diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/channel-artifacts/Org2MSPanchors.tx b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/channel-artifacts/Org2MSPanchors.tx new file mode 100644 index 00000000..36b01983 Binary files /dev/null and b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/channel-artifacts/Org2MSPanchors.tx differ diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/channel-artifacts/configtx.yaml b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/channel-artifacts/configtx.yaml new file mode 100644 index 00000000..8b04f0d4 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/channel-artifacts/configtx.yaml @@ -0,0 +1,184 @@ +--- +################################################################################ +# +# Profile +# +# - Different configuration profiles may be encoded here to be specified +# as parameters to the configtxgen tool +# +################################################################################ +Profiles: + + TwoOrgsOrdererGenesis: + Orderer: + <<: *OrdererDefaults + Organizations: + - *OrdererOrg + Consortiums: + SampleConsortium: + Organizations: + - *Org1 + - *Org2 + TwoOrgsChannel: + Consortium: SampleConsortium + Application: + <<: *ApplicationDefaults + Organizations: + - *Org1 + - *Org2 + +################################################################################ +# +# Section: Organizations +# +# - This section defines the different organizational identities which will +# be referenced later in the configuration. +# +################################################################################ +Organizations: + + # SampleOrg defines an MSP using the sampleconfig. It should never be used + # in production but may be used as a template for other definitions + - &OrdererOrg + # DefaultOrg defines the organization which is used in the sampleconfig + # of the fabric.git development environment + Name: OrdererOrg + + # ID to load the MSP definition as + ID: OrdererMSP + + # MSPDir is the filesystem path which contains the MSP configuration + MSPDir: crypto-config/ordererOrganizations/example.com/msp + + # BCCSP (Blockchain crypto provider): Select which crypto implementation or + # library to use + # BCCSP: + # Default: SW + # SW: + # Hash: SHA2 + # Security: 256 + # # Location of Key Store. If this is unset, a location will + # # be chosen using 'MSPDir'/keystore + # FileKeyStore: + # KeyStore: + + - &Org1 + # DefaultOrg defines the organization which is used in the sampleconfig + # of the fabric.git development environment + Name: Org1MSP + + # ID to load the MSP definition as + ID: Org1MSP + + MSPDir: crypto-config/peerOrganizations/org1.example.com/msp + + # BCCSP (Blockchain crypto provider): Select which crypto implementation or + # library to use + # BCCSP: + # Default: SW + # SW: + # Hash: SHA2 + # Security: 256 + # # Location of Key Store. If this is unset, a location will + # # be chosen using 'MSPDir'/keystore + # FileKeyStore: + # KeyStore: + + 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-org1 + Port: 7051 + + - &Org2 + # DefaultOrg defines the organization which is used in the sampleconfig + # of the fabric.git development environment + Name: Org2MSP + + # ID to load the MSP definition as + ID: Org2MSP + + MSPDir: crypto-config/peerOrganizations/org2.example.com/msp + + # BCCSP (Blockchain crypto provider): Select which crypto implementation or + # library to use + # BCCSP: + # Default: SW + # SW: + # Hash: SHA2 + # Security: 256 + # # Location of Key Store. If this is unset, a location will + # # be chosen using 'MSPDir'/keystore + # FileKeyStore: + # KeyStore: + + 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-org2 + Port: 7051 + +################################################################################ +# +# SECTION: Orderer +# +# - This section defines the values to encode into a config transaction or +# genesis block for orderer related parameters +# +################################################################################ +Orderer: &OrdererDefaults + + # Orderer Type: The orderer implementation to start + # Available types are "solo" and "kafka" + OrdererType: kafka + + Addresses: + - orderer0:7050 + + # Batch Timeout: The amount of time to wait before creating a batch + BatchTimeout: 2s + + # Batch Size: Controls the number of messages batched into a block + BatchSize: + + # Max Message Count: The maximum number of messages to permit in a batch + MaxMessageCount: 10 + + # Absolute Max Bytes: The absolute maximum number of bytes allowed for + # the serialized messages in a batch. + AbsoluteMaxBytes: 99 MB + + # Preferred Max Bytes: The preferred maximum number of bytes allowed for + # the serialized messages in a batch. A message larger than the preferred + # max bytes will result in a batch larger than preferred max bytes. + PreferredMaxBytes: 512 KB + + Kafka: + # Brokers: A list of Kafka brokers to which the orderer connects + # NOTE: Use IP:port notation + Brokers: + - kafka0:9092 + - kafka1:9092 + - kafka2:9092 + + # Organizations is the list of orgs which are defined as participants on + # the orderer side of the network + Organizations: + - *OrdererOrg +################################################################################ +# +# SECTION: Application +# +# - This section defines the values to encode into a config transaction or +# genesis block for application related parameters +# +################################################################################ +Application: &ApplicationDefaults + + # Organizations is the list of orgs which are defined as participants on + # the application side of the network + Organizations: + - *Org1 + - *Org2 diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/channel-artifacts/genesis.block b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/channel-artifacts/genesis.block new file mode 100644 index 00000000..a3a253e2 Binary files /dev/null and b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/channel-artifacts/genesis.block differ diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/channel-artifacts/mychannel.tx b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/channel-artifacts/mychannel.tx new file mode 100644 index 00000000..e5017990 Binary files /dev/null and b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/channel-artifacts/mychannel.tx differ diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/crypto-config.yaml b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/crypto-config.yaml new file mode 100644 index 00000000..0e83623f --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/crypto-config.yaml @@ -0,0 +1,89 @@ +# --------------------------------------------------------------------------- +# "OrdererOrgs" - Definition of organizations managing orderer nodes +# --------------------------------------------------------------------------- +OrdererOrgs: + # --------------------------------------------------------------------------- + # Orderer + # --------------------------------------------------------------------------- + - Name: orderer + Domain: example.com + # --------------------------------------------------------------------------- + # "Specs" - See PeerOrgs below for complete description + # --------------------------------------------------------------------------- + Specs: + - Hostname: orderer + SANS: + - orderer0 + +# --------------------------------------------------------------------------- +# "PeerOrgs" - Definition of organizations managing peer nodes +# --------------------------------------------------------------------------- +PeerOrgs: + # --------------------------------------------------------------------------- + # Org1 + # --------------------------------------------------------------------------- + - Name: Org1 + Domain: org1.example.com + # --------------------------------------------------------------------------- + # "Specs" + # --------------------------------------------------------------------------- + # Uncomment this section to enable the explicit definition of hosts in your + # configuration. Most users will want to use Template, below + # + # Specs is an array of Spec entries. Each Spec entry consists of two fields: + # - Hostname: (Required) The desired hostname, sans the domain. + # - CommonName: (Optional) Specifies the template or explicit override for + # the CN. By default, this is the template: + # + # "{{.Hostname}}.{{.Domain}}" + # + # which obtains its values from the Spec.Hostname and + # Org.Domain, respectively. + # --------------------------------------------------------------------------- + # Specs: + # - Hostname: foo # implicitly "foo.org1.example.com" + # CommonName: foo27.org5.example.com # overrides Hostname-based FQDN set above + # - Hostname: bar + # - Hostname: baz + # --------------------------------------------------------------------------- + # "Template" + # --------------------------------------------------------------------------- + # Allows for the definition of 1 or more hosts that are created sequentially + # from a template. By default, this looks like "peer%d" from 0 to Count-1. + # You may override the number of nodes (Count), the starting index (Start) + # or the template used to construct the name (Hostname). + # + # Note: Template and Specs are not mutually exclusive. You may define both + # sections and the aggregate nodes will be created for you. Take care with + # name collisions + # --------------------------------------------------------------------------- + Specs: + - Hostname: peer0 + SANS: + - peer0-org1 + - Hostname: peer1 + SANS: + - peer1-org1 + # Start: 5 + # Hostname: {{.Prefix}}{{.Index}} # default + # --------------------------------------------------------------------------- + # "Users" + # --------------------------------------------------------------------------- + # Count: The number of user accounts _in addition_ to Admin + # --------------------------------------------------------------------------- + Users: + Count: 1 + # --------------------------------------------------------------------------- + # Org2: See "Org1" for full specification + # --------------------------------------------------------------------------- + - Name: Org2 + Domain: org2.example.com + Specs: + - Hostname: peer0 + SANS: + - peer0-org2 + - Hostname: peer1 + SANS: + - peer1-org2 + Users: + Count: 1 diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/ca/27641843b9d9b9852e227ae6188df73ff0276588be052dd2d3ded7be1744fc14_sk b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/ca/27641843b9d9b9852e227ae6188df73ff0276588be052dd2d3ded7be1744fc14_sk new file mode 100755 index 00000000..f7381b7e --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/ca/27641843b9d9b9852e227ae6188df73ff0276588be052dd2d3ded7be1744fc14_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgH8cgUJX3szzaugqX +b6VHJ52VaQeD4/2M1GVrVEPzwKahRANCAAQQhlRDM3EDZwjvjlQ2nR2QPYVFk8Nk +IUtDMVgbEfVUnRJx9h8LSVFzBqMgU01XaiDFQt6KZ6jT/AbuFel/sq/0 +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem new file mode 100644 index 00000000..12d01075 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQd3mpED9jN9D7lOpFbn1hSzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MTAyNzEwMDY1MloXDTI4MTAyNDEwMDY1MlowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBCGVEMzcQNnCO+OVDadHZA9hUWT +w2QhS0MxWBsR9VSdEnH2HwtJUXMGoyBTTVdqIMVC3opnqNP8Bu4V6X+yr/SjXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEICdkGEO52bmFLiJ65hiN9z/wJ2WIvgUt0tPe174XRPwUMAoG +CCqGSM49BAMCA0gAMEUCIQD1RsB94DWeHUOxF9yQbL6gJsJWB/abvgsmlkIad3qR +QQIgQ2FvByjKLUI0rHhClVFptZSua9zmo8BI1FuCcEdD40g= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem new file mode 100644 index 00000000..ec2ff0b8 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem @@ -0,0 +1,13 @@ +-----BEGIN CERTIFICATE----- +MIICCzCCAbGgAwIBAgIRAPeOvjB+yUG/vGYbsHXu09wwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMFYxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABOOVCsMSTNLLC2iBaXxYQygRYAwf4LUClr1PZXHa5lnOLMLOJpkT +GipvuxUh7riVEsefW+7dNLyYW3gwRF8RU/WjTTBLMA4GA1UdDwEB/wQEAwIHgDAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICdkGEO52bmFLiJ65hiN9z/wJ2WIvgUt +0tPe174XRPwUMAoGCCqGSM49BAMCA0gAMEUCIQC1TPX5A9rF7ZoalJG8o1lxCbcf +WcnVAp2bxaDEyMJEVwIgYbkzjAYT3ZjPQr0Zwc1sySeV6ue6l91+I32qhe9239Y= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem new file mode 100644 index 00000000..12d01075 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQd3mpED9jN9D7lOpFbn1hSzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MTAyNzEwMDY1MloXDTI4MTAyNDEwMDY1MlowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBCGVEMzcQNnCO+OVDadHZA9hUWT +w2QhS0MxWBsR9VSdEnH2HwtJUXMGoyBTTVdqIMVC3opnqNP8Bu4V6X+yr/SjXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEICdkGEO52bmFLiJ65hiN9z/wJ2WIvgUt0tPe174XRPwUMAoG +CCqGSM49BAMCA0gAMEUCIQD1RsB94DWeHUOxF9yQbL6gJsJWB/abvgsmlkIad3qR +QQIgQ2FvByjKLUI0rHhClVFptZSua9zmo8BI1FuCcEdD40g= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem new file mode 100644 index 00000000..b90a5119 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRAO9eQIvFWTVu6P3wG7qyxwMwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQVkav3qnUaq2sT5fXa +w7PC66C1tNvm0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3Lc +Wuj9o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6Sh +mD8jYjAKBggqhkjOPQQDAgNIADBFAiEAj8nHgKRVcScP5atiRilix5AULPsxEcLx +tkazxYlUqb0CIHuBnz2s+DCiAfvQyBgsN6vUzoFfwylS3+e7o/sgpU3R +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderer.genesis.block b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderer.genesis.block new file mode 100644 index 00000000..a3a253e2 Binary files /dev/null and b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderer.genesis.block differ diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem new file mode 100644 index 00000000..ec2ff0b8 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem @@ -0,0 +1,13 @@ +-----BEGIN CERTIFICATE----- +MIICCzCCAbGgAwIBAgIRAPeOvjB+yUG/vGYbsHXu09wwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMFYxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABOOVCsMSTNLLC2iBaXxYQygRYAwf4LUClr1PZXHa5lnOLMLOJpkT +GipvuxUh7riVEsefW+7dNLyYW3gwRF8RU/WjTTBLMA4GA1UdDwEB/wQEAwIHgDAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICdkGEO52bmFLiJ65hiN9z/wJ2WIvgUt +0tPe174XRPwUMAoGCCqGSM49BAMCA0gAMEUCIQC1TPX5A9rF7ZoalJG8o1lxCbcf +WcnVAp2bxaDEyMJEVwIgYbkzjAYT3ZjPQr0Zwc1sySeV6ue6l91+I32qhe9239Y= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem new file mode 100644 index 00000000..12d01075 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQd3mpED9jN9D7lOpFbn1hSzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MTAyNzEwMDY1MloXDTI4MTAyNDEwMDY1MlowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBCGVEMzcQNnCO+OVDadHZA9hUWT +w2QhS0MxWBsR9VSdEnH2HwtJUXMGoyBTTVdqIMVC3opnqNP8Bu4V6X+yr/SjXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEICdkGEO52bmFLiJ65hiN9z/wJ2WIvgUt0tPe174XRPwUMAoG +CCqGSM49BAMCA0gAMEUCIQD1RsB94DWeHUOxF9yQbL6gJsJWB/abvgsmlkIad3qR +QQIgQ2FvByjKLUI0rHhClVFptZSua9zmo8BI1FuCcEdD40g= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/d3c01e3de9d0fd09b91aef4dfa10325953a7baa8e86f8ec604cc16af47059be6_sk b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/d3c01e3de9d0fd09b91aef4dfa10325953a7baa8e86f8ec604cc16af47059be6_sk new file mode 100755 index 00000000..7c071b70 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/d3c01e3de9d0fd09b91aef4dfa10325953a7baa8e86f8ec604cc16af47059be6_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgD99NWTDKsz+4bzNg +DP8Z8RKleXkpCACqiMDL1PoCld2hRANCAARwHwHpHxPYHhY7fGeQHyihtUx2JSXE +S3wk2v829otAUxZ2FSYoXrh3BRRHIACeOdp8gaeIJ4IBXlKm/LauQeX8 +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem new file mode 100644 index 00000000..853236b6 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem @@ -0,0 +1,13 @@ +-----BEGIN CERTIFICATE----- +MIICCzCCAbKgAwIBAgIQSMwV/nntRLTJPwNGrwqzbzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MTAyNzEwMDY1MloXDTI4MTAyNDEwMDY1MlowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAARwHwHpHxPYHhY7fGeQHyihtUx2JSXES3wk2v829otAUxZ2FSYo +Xrh3BRRHIACeOdp8gaeIJ4IBXlKm/LauQeX8o00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAnZBhDudm5hS4ieuYYjfc/8CdliL4F +LdLT3te+F0T8FDAKBggqhkjOPQQDAgNHADBEAiBBfKP1ThU3HRIMYXuvu6Ixui3/ +9q29/Q7jv3vfRSBUBQIgaYDDWdewm3x5oAUGPIhahq5KJjAffVruTTFqL/ID2bQ= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem new file mode 100644 index 00000000..b90a5119 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRAO9eQIvFWTVu6P3wG7qyxwMwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQVkav3qnUaq2sT5fXa +w7PC66C1tNvm0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3Lc +Wuj9o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6Sh +mD8jYjAKBggqhkjOPQQDAgNIADBFAiEAj8nHgKRVcScP5atiRilix5AULPsxEcLx +tkazxYlUqb0CIHuBnz2s+DCiAfvQyBgsN6vUzoFfwylS3+e7o/sgpU3R +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt new file mode 100644 index 00000000..b90a5119 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRAO9eQIvFWTVu6P3wG7qyxwMwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQVkav3qnUaq2sT5fXa +w7PC66C1tNvm0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3Lc +Wuj9o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6Sh +mD8jYjAKBggqhkjOPQQDAgNIADBFAiEAj8nHgKRVcScP5atiRilix5AULPsxEcLx +tkazxYlUqb0CIHuBnz2s+DCiAfvQyBgsN6vUzoFfwylS3+e7o/sgpU3R +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt new file mode 100644 index 00000000..d0156950 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICYjCCAgmgAwIBAgIQTArOhF6FzulLnT3VVXwmwDAKBggqhkjOPQQDAjBsMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xGjAYBgNVBAMTEXRsc2NhLmV4 +YW1wbGUuY29tMB4XDTE4MTAyNzEwMDY1MloXDTI4MTAyNDEwMDY1MlowWDELMAkG +A1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFu +Y2lzY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIB +BggqhkjOPQMBBwNCAASabAZSZbkYYb+ZZ9c8SKf8QgDvhxEtE4tx0WiwEDo6DzSX +FJ+m4CP+mWN1WV0VYDqA90kXYWMlea1/PQCKtpOTo4GgMIGdMA4GA1UdDwEB/wQE +AwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDAYDVR0TAQH/BAIw +ADArBgNVHSMEJDAigCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6ShmD8jYjAx +BgNVHREEKjAoghNvcmRlcmVyLmV4YW1wbGUuY29tggdvcmRlcmVygghvcmRlcmVy +MDAKBggqhkjOPQQDAgNHADBEAiATIulDTgIgrSNcRYj8jFiT+nPVxbxmZlMOvwPn +U+ou8AIgTMf054RLRaH6yUNYijQOZhiXdH2+UyOlK00NZD01TOY= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key new file mode 100755 index 00000000..a6dd236b --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgAArOl7PGCTcI4Eq6 +//ScZf6a/5h0lQx8/9+ayEZfAW6hRANCAASabAZSZbkYYb+ZZ9c8SKf8QgDvhxEt +E4tx0WiwEDo6DzSXFJ+m4CP+mWN1WV0VYDqA90kXYWMlea1/PQCKtpOT +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/tlsca/408befc0c430e1ddcc27b805d6defb97bf8c23a95df458eb816ba4a1983f2362_sk b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/tlsca/408befc0c430e1ddcc27b805d6defb97bf8c23a95df458eb816ba4a1983f2362_sk new file mode 100755 index 00000000..1d8a7c8f --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/tlsca/408befc0c430e1ddcc27b805d6defb97bf8c23a95df458eb816ba4a1983f2362_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgngB3PwbhfOQ9pgZu +O5QcuFc2zNNzJrOJ4bk+gk8mBk+hRANCAAQVkav3qnUaq2sT5fXaw7PC66C1tNvm +0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3LcWuj9 +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem new file mode 100644 index 00000000..b90a5119 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRAO9eQIvFWTVu6P3wG7qyxwMwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQVkav3qnUaq2sT5fXa +w7PC66C1tNvm0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3Lc +Wuj9o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6Sh +mD8jYjAKBggqhkjOPQQDAgNIADBFAiEAj8nHgKRVcScP5atiRilix5AULPsxEcLx +tkazxYlUqb0CIHuBnz2s+DCiAfvQyBgsN6vUzoFfwylS3+e7o/sgpU3R +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem new file mode 100644 index 00000000..ec2ff0b8 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem @@ -0,0 +1,13 @@ +-----BEGIN CERTIFICATE----- +MIICCzCCAbGgAwIBAgIRAPeOvjB+yUG/vGYbsHXu09wwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMFYxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABOOVCsMSTNLLC2iBaXxYQygRYAwf4LUClr1PZXHa5lnOLMLOJpkT +GipvuxUh7riVEsefW+7dNLyYW3gwRF8RU/WjTTBLMA4GA1UdDwEB/wQEAwIHgDAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICdkGEO52bmFLiJ65hiN9z/wJ2WIvgUt +0tPe174XRPwUMAoGCCqGSM49BAMCA0gAMEUCIQC1TPX5A9rF7ZoalJG8o1lxCbcf +WcnVAp2bxaDEyMJEVwIgYbkzjAYT3ZjPQr0Zwc1sySeV6ue6l91+I32qhe9239Y= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem new file mode 100644 index 00000000..12d01075 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICLzCCAdWgAwIBAgIQd3mpED9jN9D7lOpFbn1hSzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MTAyNzEwMDY1MloXDTI4MTAyNDEwMDY1MlowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBCGVEMzcQNnCO+OVDadHZA9hUWT +w2QhS0MxWBsR9VSdEnH2HwtJUXMGoyBTTVdqIMVC3opnqNP8Bu4V6X+yr/SjXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEICdkGEO52bmFLiJ65hiN9z/wJ2WIvgUt0tPe174XRPwUMAoG +CCqGSM49BAMCA0gAMEUCIQD1RsB94DWeHUOxF9yQbL6gJsJWB/abvgsmlkIad3qR +QQIgQ2FvByjKLUI0rHhClVFptZSua9zmo8BI1FuCcEdD40g= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/e3b630d32ecf1662a06d1e17b06c047dabfddbb940688ccd3d39a26d38864a14_sk b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/e3b630d32ecf1662a06d1e17b06c047dabfddbb940688ccd3d39a26d38864a14_sk new file mode 100755 index 00000000..a3eba98c --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/e3b630d32ecf1662a06d1e17b06c047dabfddbb940688ccd3d39a26d38864a14_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg+mWcSCFy5cwRXBJQ +lrUSvD1ghzdEqPl67noqL7QIev+hRANCAATjlQrDEkzSywtogWl8WEMoEWAMH+C1 +Apa9T2Vx2uZZzizCziaZExoqb7sVIe64lRLHn1vu3TS8mFt4MERfEVP1 +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem new file mode 100644 index 00000000..ec2ff0b8 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem @@ -0,0 +1,13 @@ +-----BEGIN CERTIFICATE----- +MIICCzCCAbGgAwIBAgIRAPeOvjB+yUG/vGYbsHXu09wwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMFYxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABOOVCsMSTNLLC2iBaXxYQygRYAwf4LUClr1PZXHa5lnOLMLOJpkT +GipvuxUh7riVEsefW+7dNLyYW3gwRF8RU/WjTTBLMA4GA1UdDwEB/wQEAwIHgDAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICdkGEO52bmFLiJ65hiN9z/wJ2WIvgUt +0tPe174XRPwUMAoGCCqGSM49BAMCA0gAMEUCIQC1TPX5A9rF7ZoalJG8o1lxCbcf +WcnVAp2bxaDEyMJEVwIgYbkzjAYT3ZjPQr0Zwc1sySeV6ue6l91+I32qhe9239Y= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem new file mode 100644 index 00000000..b90a5119 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRAO9eQIvFWTVu6P3wG7qyxwMwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQVkav3qnUaq2sT5fXa +w7PC66C1tNvm0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3Lc +Wuj9o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6Sh +mD8jYjAKBggqhkjOPQQDAgNIADBFAiEAj8nHgKRVcScP5atiRilix5AULPsxEcLx +tkazxYlUqb0CIHuBnz2s+DCiAfvQyBgsN6vUzoFfwylS3+e7o/sgpU3R +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt new file mode 100644 index 00000000..b90a5119 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRAO9eQIvFWTVu6P3wG7qyxwMwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQVkav3qnUaq2sT5fXa +w7PC66C1tNvm0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3Lc +Wuj9o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6Sh +mD8jYjAKBggqhkjOPQQDAgNIADBFAiEAj8nHgKRVcScP5atiRilix5AULPsxEcLx +tkazxYlUqb0CIHuBnz2s+DCiAfvQyBgsN6vUzoFfwylS3+e7o/sgpU3R +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt new file mode 100644 index 00000000..a35d9015 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICLDCCAdOgAwIBAgIRAL6AEy/g1TghDMQ4HWaxXZkwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMFYxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEG +CCqGSM49AwEHA0IABLw7LC1yCMu+hrAwgheVh9yj3tLY8bwGxXvyU/W96/t0FLwt +gDx/QsYn2GuONTaTx0ls22jRtw+Kd4fPj42aA12jbDBqMA4GA1UdDwEB/wQEAwIF +oDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDAYDVR0TAQH/BAIwADAr +BgNVHSMEJDAigCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6ShmD8jYjAKBggq +hkjOPQQDAgNHADBEAiAMSNSeGLwC3vY9Q4ORW/Vsar8rqruL2ZA3GzE8yhFcMwIg +ET0ESG0SJV2HDxrg38ik+JtvKUwqBUozzYPImycaq88= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key new file mode 100755 index 00000000..6cb10459 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg3YL6ruqUKDa1+DuI +FFzLh/nsUBYPwbxKK1t3FxHo6pihRANCAAS8OywtcgjLvoawMIIXlYfco97S2PG8 +BsV78lP1vev7dBS8LYA8f0LGJ9hrjjU2k8dJbNto0bcPineHz4+NmgNd +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/ca/325aba0f5711d0298bb5812da89297e3dd52d66c40899cda2b43c9420cb21868_sk b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/ca/325aba0f5711d0298bb5812da89297e3dd52d66c40899cda2b43c9420cb21868_sk new file mode 100755 index 00000000..9eafc272 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/ca/325aba0f5711d0298bb5812da89297e3dd52d66c40899cda2b43c9420cb21868_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgicNbrihwcFj1dLPb +6+uBhe7QxyNOvGl3EHoLjoZU4G6hRANCAATesUm5yu8fJecjuUgHapgvwg9AejjO +f+gXbMp3Ok6EL0DIumfI/LC7J5ip9gsD+/aSWy7IN4UKSORWzIYeyTZP +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..c45ba9cd --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAP4Lv47rQS4NRUD1SnBQuWMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BN6xSbnK7x8l5yO5SAdqmC/CD0B6OM5/6Bdsync6ToQvQMi6Z8j8sLsnmKn2CwP7 +9pJbLsg3hQpI5FbMhh7JNk+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDJaug9XEdApi7WBLaiS +l+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0gAMEUCIQDOcw+nzAc2zK8d ++FVp+f3lesZLTzmR6dgAPnr+WSaDLQIgY6cHZXMEZu7IC/AHq1klkzXqObRBBQgR +C4a/Uu57KfY= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem new file mode 100644 index 00000000..35e2f597 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAOjRDJSEnySEM3dZhGnVUk8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJtXUnp5j/NTsOo5h395+U5wfUi8V4Te +S88+IfNRM3mlUapEMSDwFNBkb0a8DInz8qz+tGd2Tr/a5NAJYN5VFdijTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDJaug9XEdAp +i7WBLaiSl+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0cAMEQCIH5QOeAf +3PiVHEKMcXcxAppBnzEIYbaIXknhlPFU7kvqAiBI9QgnKOCMv+jCBCb/wljrf8wN +HAC1mvqb8Hl5LPgLLA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..c45ba9cd --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAP4Lv47rQS4NRUD1SnBQuWMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BN6xSbnK7x8l5yO5SAdqmC/CD0B6OM5/6Bdsync6ToQvQMi6Z8j8sLsnmKn2CwP7 +9pJbLsg3hQpI5FbMhh7JNk+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDJaug9XEdApi7WBLaiS +l+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0gAMEUCIQDOcw+nzAc2zK8d ++FVp+f3lesZLTzmR6dgAPnr+WSaDLQIgY6cHZXMEZu7IC/AHq1klkzXqObRBBQgR +C4a/Uu57KfY= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem new file mode 100644 index 00000000..35e2f597 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAOjRDJSEnySEM3dZhGnVUk8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJtXUnp5j/NTsOo5h395+U5wfUi8V4Te +S88+IfNRM3mlUapEMSDwFNBkb0a8DInz8qz+tGd2Tr/a5NAJYN5VFdijTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDJaug9XEdAp +i7WBLaiSl+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0cAMEQCIH5QOeAf +3PiVHEKMcXcxAppBnzEIYbaIXknhlPFU7kvqAiBI9QgnKOCMv+jCBCb/wljrf8wN +HAC1mvqb8Hl5LPgLLA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..c45ba9cd --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAP4Lv47rQS4NRUD1SnBQuWMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BN6xSbnK7x8l5yO5SAdqmC/CD0B6OM5/6Bdsync6ToQvQMi6Z8j8sLsnmKn2CwP7 +9pJbLsg3hQpI5FbMhh7JNk+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDJaug9XEdApi7WBLaiS +l+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0gAMEUCIQDOcw+nzAc2zK8d ++FVp+f3lesZLTzmR6dgAPnr+WSaDLQIgY6cHZXMEZu7IC/AHq1klkzXqObRBBQgR +C4a/Uu57KfY= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/da25f54af5bd8433c4e948e88e7bbd9c760c930251f332201eb8cad36c01acd5_sk b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/da25f54af5bd8433c4e948e88e7bbd9c760c930251f332201eb8cad36c01acd5_sk new file mode 100755 index 00000000..a8597fa9 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/da25f54af5bd8433c4e948e88e7bbd9c760c930251f332201eb8cad36c01acd5_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgqXt+hjpIl7NG+cdK +ms+lUWovEpW5CcgrKDgbQD/0C2uhRANCAASMvjHhP++M6WpifzqCgC28/ah7fcpC +jpXtKSZP8Uo+db+Nwc4V3e9PKYy1zKpf5hG1u4tgIct470yOcaKXmkfq +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem new file mode 100644 index 00000000..f42560b7 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQLm4LOW7TOEzwz2CjBgQvszAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEjL4x4T/vjOlqYn86goAtvP2oe33KQo6V +7SkmT/FKPnW/jcHOFd3vTymMtcyqX+YRtbuLYCHLeO9MjnGil5pH6qNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgMlq6D1cR0CmL +tYEtqJKX491S1mxAiZzaK0PJQgyyGGgwCgYIKoZIzj0EAwIDSAAwRQIhAKqhORDD +Hd1cuyX1HnGoIkcACieomXdAH4d4kW3fbWS0AiBuktrzPquhybNWCd7yzTNeDU0L +kGaatcvjad3dCBaIBw== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt new file mode 100644 index 00000000..ef9bbf20 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt @@ -0,0 +1,16 @@ +-----BEGIN CERTIFICATE----- +MIICczCCAhqgAwIBAgIRAJE3XLFXUcy6Tklp2dWD6/EwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBvQOmSs1RcO5feZYLhl7EHkTWEp +0e26wjwYzOenFUdtug8bEkPDjY/I1b/cJBeb4MREveLZy6GXxfL3jVwxa5WjgaMw +gaAwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcD +AjAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIOEClGNVShM2a2AJA+4QjQDnx8Aw +izEy1Sjd+rtVQESeMDQGA1UdEQQtMCuCFnBlZXIwLm9yZzEuZXhhbXBsZS5jb22C +BXBlZXIwggpwZWVyMC1vcmcxMAoGCCqGSM49BAMCA0cAMEQCIEWnFeGvigEHsbpT +yeU6rDk8JYDQLhdcBGN33BJQzZuVAiBfRu81mf1YYgCdE1PRZ/p6nV4WPwtdGbfM +NU8TBzuFdg== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key new file mode 100755 index 00000000..0e50f82c --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgTqXXGD3L7uMmwvfN +RQzlRD5YfFXnDXhDRbG5DB0DMmChRANCAAQb0DpkrNUXDuX3mWC4ZexB5E1hKdHt +usI8GMznpxVHbboPGxJDw42PyNW/3CQXm+DERL3i2cuhl8Xy941cMWuV +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem new file mode 100644 index 00000000..35e2f597 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAOjRDJSEnySEM3dZhGnVUk8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJtXUnp5j/NTsOo5h395+U5wfUi8V4Te +S88+IfNRM3mlUapEMSDwFNBkb0a8DInz8qz+tGd2Tr/a5NAJYN5VFdijTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDJaug9XEdAp +i7WBLaiSl+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0cAMEQCIH5QOeAf +3PiVHEKMcXcxAppBnzEIYbaIXknhlPFU7kvqAiBI9QgnKOCMv+jCBCb/wljrf8wN +HAC1mvqb8Hl5LPgLLA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..c45ba9cd --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAP4Lv47rQS4NRUD1SnBQuWMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BN6xSbnK7x8l5yO5SAdqmC/CD0B6OM5/6Bdsync6ToQvQMi6Z8j8sLsnmKn2CwP7 +9pJbLsg3hQpI5FbMhh7JNk+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDJaug9XEdApi7WBLaiS +l+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0gAMEUCIQDOcw+nzAc2zK8d ++FVp+f3lesZLTzmR6dgAPnr+WSaDLQIgY6cHZXMEZu7IC/AHq1klkzXqObRBBQgR +C4a/Uu57KfY= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/d589dae509a76ddafeb9e45ce66b143529080e5144282038bc1daa4faa63cd57_sk b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/d589dae509a76ddafeb9e45ce66b143529080e5144282038bc1daa4faa63cd57_sk new file mode 100755 index 00000000..f4f1e717 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/d589dae509a76ddafeb9e45ce66b143529080e5144282038bc1daa4faa63cd57_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgZBoyXofwoIEQLwpS +eotwphO+QsdnaaTFdVJvPVqPKyOhRANCAAQdEg+0urG2qAqgFtaoCfJNmEMRkvlk +D9OcIsftTguGgjeYNmRhI6fjiajzUYzwCdhAPCejYGI7UojOXET8p6nD +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem new file mode 100644 index 00000000..49201382 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQQlWT/r3rjNP/pmhZmzXxdjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEHRIPtLqxtqgKoBbWqAnyTZhDEZL5ZA/T +nCLH7U4LhoI3mDZkYSOn44mo81GM8AnYQDwno2BiO1KIzlxE/Kepw6NNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgMlq6D1cR0CmL +tYEtqJKX491S1mxAiZzaK0PJQgyyGGgwCgYIKoZIzj0EAwIDSAAwRQIhAPY3Vv8D +X+SEl8zwv0DxkLeEACmD0IQg9N/Nn0gdJlObAiB7Bbmli2VjoK69AfuqOn7TaE2F +BWJKfi4Qq9A5fxEPdw== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt new file mode 100644 index 00000000..59baf960 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt @@ -0,0 +1,16 @@ +-----BEGIN CERTIFICATE----- +MIICczCCAhqgAwIBAgIRAJMPgvCAF60FgmAIBpbXs+4wCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEVcT/yTG96g8/t7BQMUkwcunFhD +4h6gQSigVeAvehGaeLTLoGlPTI+J0TFMOuSYLQ1dcQlMyBQ/qUxz2/YCG82jgaMw +gaAwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcD +AjAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIOEClGNVShM2a2AJA+4QjQDnx8Aw +izEy1Sjd+rtVQESeMDQGA1UdEQQtMCuCFnBlZXIxLm9yZzEuZXhhbXBsZS5jb22C +BXBlZXIxggpwZWVyMS1vcmcxMAoGCCqGSM49BAMCA0cAMEQCIDH9mc0FZQhUVI79 +3OHf8U1h3RX7KXUvPYxFWXiRAl7AAiAPbFMfrOp1kI9TGQb32pkBaCaqcu5ywQKH +WNi7sJkEJA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key new file mode 100755 index 00000000..c1063a75 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgqtHwU4bmDiYng9lz +5sXQofYFDL+sz5x62tcmVagrH5uhRANCAARFXE/8kxveoPP7ewUDFJMHLpxYQ+Ie +oEEooFXgL3oRmni0y6BpT0yPidExTDrkmC0NXXEJTMgUP6lMc9v2AhvN +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/tlsca/e1029463554a13366b600903ee108d00e7c7c0308b3132d528ddfabb5540449e_sk b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/tlsca/e1029463554a13366b600903ee108d00e7c7c0308b3132d528ddfabb5540449e_sk new file mode 100755 index 00000000..5e7d9b76 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/tlsca/e1029463554a13366b600903ee108d00e7c7c0308b3132d528ddfabb5540449e_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgXr8JctituzEzRa7j +wcqU1bOOoUkvQLEB4jzk5LRVl4+hRANCAARoL15ffVzRhteNdtZts9grgSquY2dn +0UOeDGmr4XVd5Bz5Tz2TiJxOmBostM8aWegYDUQHkT5mdBcv+TgJHPse +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem new file mode 100644 index 00000000..35e2f597 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAOjRDJSEnySEM3dZhGnVUk8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJtXUnp5j/NTsOo5h395+U5wfUi8V4Te +S88+IfNRM3mlUapEMSDwFNBkb0a8DInz8qz+tGd2Tr/a5NAJYN5VFdijTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDJaug9XEdAp +i7WBLaiSl+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0cAMEQCIH5QOeAf +3PiVHEKMcXcxAppBnzEIYbaIXknhlPFU7kvqAiBI9QgnKOCMv+jCBCb/wljrf8wN +HAC1mvqb8Hl5LPgLLA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..c45ba9cd --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAP4Lv47rQS4NRUD1SnBQuWMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BN6xSbnK7x8l5yO5SAdqmC/CD0B6OM5/6Bdsync6ToQvQMi6Z8j8sLsnmKn2CwP7 +9pJbLsg3hQpI5FbMhh7JNk+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDJaug9XEdApi7WBLaiS +l+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0gAMEUCIQDOcw+nzAc2zK8d ++FVp+f3lesZLTzmR6dgAPnr+WSaDLQIgY6cHZXMEZu7IC/AHq1klkzXqObRBBQgR +C4a/Uu57KfY= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/54cd3c83ff3f5afbbd3b439f2c9ac99c2abf426b75b291bb5ca6ec11385c2b06_sk b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/54cd3c83ff3f5afbbd3b439f2c9ac99c2abf426b75b291bb5ca6ec11385c2b06_sk new file mode 100755 index 00000000..80a17264 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/54cd3c83ff3f5afbbd3b439f2c9ac99c2abf426b75b291bb5ca6ec11385c2b06_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgs06mwimGWsDRF813 +CJ4XW4C4tD3Ggh75HtfR+grjchqhRANCAASbV1J6eY/zU7DqOYd/eflOcH1IvFeE +3kvPPiHzUTN5pVGqRDEg8BTQZG9GvAyJ8/Ks/rRndk6/2uTQCWDeVRXY +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem new file mode 100644 index 00000000..35e2f597 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAOjRDJSEnySEM3dZhGnVUk8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJtXUnp5j/NTsOo5h395+U5wfUi8V4Te +S88+IfNRM3mlUapEMSDwFNBkb0a8DInz8qz+tGd2Tr/a5NAJYN5VFdijTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDJaug9XEdAp +i7WBLaiSl+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0cAMEQCIH5QOeAf +3PiVHEKMcXcxAppBnzEIYbaIXknhlPFU7kvqAiBI9QgnKOCMv+jCBCb/wljrf8wN +HAC1mvqb8Hl5LPgLLA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt new file mode 100644 index 00000000..322e35bd --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICPDCCAeKgAwIBAgIRAPnWT9T98v+VEc4tcwEVQsEwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFEqff+k9llGWR2zLsihNduT6dhg +P5T3kQGG9pelnfZYEZX21etI9BWxDhBZ5WViUV3mWnju+E6Y4Mqjrxdu25qjbDBq +MA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDhApRjVUoTNmtgCQPuEI0A58fAMIsx +MtUo3fq7VUBEnjAKBggqhkjOPQQDAgNIADBFAiEA43nrey0WUFHWn2e8/3MA3EkR +3PSequcqzQFGIROGKhkCIHOVIqhc/TonNbsFufSXRgwSq7XBhd3siDHq0UV6ICQR +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key new file mode 100755 index 00000000..11bcd586 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgQ0thSMwpcbeb4Wg9 +72V4KVKd3SfnBgXbwo4ocSWQYrmhRANCAARRKn3/pPZZRlkdsy7IoTXbk+nYYD+U +95EBhvaXpZ32WBGV9tXrSPQVsQ4QWeVlYlFd5lp47vhOmODKo68Xbtua +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/tlsca.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/tlsca.example.com-cert.pem new file mode 100644 index 00000000..b90a5119 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/tlsca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRAO9eQIvFWTVu6P3wG7qyxwMwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQVkav3qnUaq2sT5fXa +w7PC66C1tNvm0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3Lc +Wuj9o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6Sh +mD8jYjAKBggqhkjOPQQDAgNIADBFAiEAj8nHgKRVcScP5atiRilix5AULPsxEcLx +tkazxYlUqb0CIHuBnz2s+DCiAfvQyBgsN6vUzoFfwylS3+e7o/sgpU3R +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem new file mode 100644 index 00000000..c4397292 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRANCxm2czfYrucVdiy9FiyMEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWVXNlcjFAb3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABA51z4L1BdukxjjTQShDB7DSsLivO02q +XM8poWFbA43VJvcO3oD1JOEqqs5pI3YoatK8aFrpEyhHPW8jQkqPi2OjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDJaug9XEdAp +i7WBLaiSl+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0gAMEUCIQDM7vxT +qO/P5AHzgiUvcDde/EC7vWvVqaz3h0jlnGP5rQIgQrm+U6A/B6YH8cxB3uocRBTp +eyzSmcT+bCStiPqONfc= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..c45ba9cd --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICRDCCAeqgAwIBAgIRAP4Lv47rQS4NRUD1SnBQuWMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BN6xSbnK7x8l5yO5SAdqmC/CD0B6OM5/6Bdsync6ToQvQMi6Z8j8sLsnmKn2CwP7 +9pJbLsg3hQpI5FbMhh7JNk+jXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDJaug9XEdApi7WBLaiS +l+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0gAMEUCIQDOcw+nzAc2zK8d ++FVp+f3lesZLTzmR6dgAPnr+WSaDLQIgY6cHZXMEZu7IC/AHq1klkzXqObRBBQgR +C4a/Uu57KfY= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/8bbd58817cf4be0f1cd5d666dcbbf5fe99231766c069c079a73ce710900a0ca3_sk b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/8bbd58817cf4be0f1cd5d666dcbbf5fe99231766c069c079a73ce710900a0ca3_sk new file mode 100755 index 00000000..e7c435c2 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/8bbd58817cf4be0f1cd5d666dcbbf5fe99231766c069c079a73ce710900a0ca3_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgSGS1yuWEqweLrU64 +aGf7iTxOEw20vsTv9OL+slFR+F+hRANCAAQOdc+C9QXbpMY400EoQwew0rC4rztN +qlzPKaFhWwON1Sb3Dt6A9SThKqrOaSN2KGrSvGha6RMoRz1vI0JKj4tj +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem new file mode 100644 index 00000000..c4397292 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRANCxm2czfYrucVdiy9FiyMEwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWVXNlcjFAb3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABA51z4L1BdukxjjTQShDB7DSsLivO02q +XM8poWFbA43VJvcO3oD1JOEqqs5pI3YoatK8aFrpEyhHPW8jQkqPi2OjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDJaug9XEdAp +i7WBLaiSl+PdUtZsQImc2itDyUIMshhoMAoGCCqGSM49BAMCA0gAMEUCIQDM7vxT +qO/P5AHzgiUvcDde/EC7vWvVqaz3h0jlnGP5rQIgQrm+U6A/B6YH8cxB3uocRBTp +eyzSmcT+bCStiPqONfc= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt new file mode 100644 index 00000000..9b5e9148 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQYpyBYzW+1ea2joXsd7CvvjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAEaC9eX31c0YbXjXbWbbPYK4EqrmNnZ9FDngxpq+F1XeQc+U89k4icTpga +LLTPGlnoGA1EB5E+ZnQXL/k4CRz7HqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg4QKUY1VKEzZr +YAkD7hCNAOfHwDCLMTLVKN36u1VARJ4wCgYIKoZIzj0EAwIDSAAwRQIhAP96/xpn +V1hJ/wdpnAbR/pkgKIlv+guOFjNqe+YcT77vAiBFaTT0rrXAd5a67cW//wUjZHKJ +uZ+aX8F9sVVGQlUCrA== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt new file mode 100644 index 00000000..6c59ef0f --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICOzCCAeGgAwIBAgIQY2lEiM8AY6tsR6LVeyUXnjAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZVc2VyMUBvcmcxLmV4YW1wbGUuY29t +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExyIv2ATqezL9TRZYYDB7tT4E2T4b +u5+bPL/8BlzQMDyLtbk2dJb8/GgrknG8YtUDmWVSk8l7F3KGPE9011tD0qNsMGow +DgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIOEClGNVShM2a2AJA+4QjQDnx8AwizEy +1Sjd+rtVQESeMAoGCCqGSM49BAMCA0gAMEUCIQCvc5EMYntlQqAw1foauw07ZCF0 +B9s2cWtN6rZVZ/lTiAIgfwWrEIkBdKqktGrEe1kj4E6u3PCCIGm3ORNQL/zoNSU= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key new file mode 100755 index 00000000..648a30ff --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgVm9qFTNr7uvv0Qt9 +tfLRXIAPMkd5o+JEPglwWkiNMFWhRANCAATHIi/YBOp7Mv1NFlhgMHu1PgTZPhu7 +n5s8v/wGXNAwPIu1uTZ0lvz8aCuScbxi1QOZZVKTyXsXcoY8T3TXW0PS +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/ca/33d617d5db2c05302f25b72f8c527d2a54b64931dc1452281c515f51e535aaa7_sk b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/ca/33d617d5db2c05302f25b72f8c527d2a54b64931dc1452281c515f51e535aaa7_sk new file mode 100755 index 00000000..cf50e198 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/ca/33d617d5db2c05302f25b72f8c527d2a54b64931dc1452281c515f51e535aaa7_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgPmgTgRLPSJIHhN+J +evZiEUj7+KjcWKcnTf2bR6tifOehRANCAASbbL7sby7y+1hDdkOIagu++4Cc4KLE +vvAxaamEMX5q9EU8V248IxkkNEfzN2CwInX1le3xYT3lWa4nSu4u4tfH +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..1ce95e85 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQND+vNQvf96L9SYwvQTBDjTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +m2y+7G8u8vtYQ3ZDiGoLvvuAnOCixL7wMWmphDF+avRFPFduPCMZJDRH8zdgsCJ1 +9ZXt8WE95VmuJ0ruLuLXx6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgM9YX1dssBTAvJbcvjFJ9 +KlS2STHcFFIoHFFfUeU1qqcwCgYIKoZIzj0EAwIDRwAwRAIgCwYcTSZrtNVKm/Zs +U4o5DJNdISYx6ccTjRTDGU6LHwICIAi4L9AvsWBKPLoI1T+/x1ryygaUdlA/Rf8k +5wy4c0FT +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem new file mode 100644 index 00000000..66891db2 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJuAabxDD1W69XuRdd0x1/8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAtvxQJRW91s20gvOVLRoidAIjeJ9hH+ +h4V2UyIiHlv9cKFI5473jABQM879//0brYQAe2+K8+Oz9F7Z00clmLyjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDPWF9XbLAUw +LyW3L4xSfSpUtkkx3BRSKBxRX1HlNaqnMAoGCCqGSM49BAMCA0gAMEUCIQCtQu+f +QRaMGsvDPsGnd5QkAFij58WC5dDtlUS64C52QgIgcLRRlKsACM0Cwa7x2unXpQ0U +pdHlel+94ytp93+Axhs= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..1ce95e85 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQND+vNQvf96L9SYwvQTBDjTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +m2y+7G8u8vtYQ3ZDiGoLvvuAnOCixL7wMWmphDF+avRFPFduPCMZJDRH8zdgsCJ1 +9ZXt8WE95VmuJ0ruLuLXx6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgM9YX1dssBTAvJbcvjFJ9 +KlS2STHcFFIoHFFfUeU1qqcwCgYIKoZIzj0EAwIDRwAwRAIgCwYcTSZrtNVKm/Zs +U4o5DJNdISYx6ccTjRTDGU6LHwICIAi4L9AvsWBKPLoI1T+/x1ryygaUdlA/Rf8k +5wy4c0FT +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem new file mode 100644 index 00000000..66891db2 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJuAabxDD1W69XuRdd0x1/8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAtvxQJRW91s20gvOVLRoidAIjeJ9hH+ +h4V2UyIiHlv9cKFI5473jABQM879//0brYQAe2+K8+Oz9F7Z00clmLyjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDPWF9XbLAUw +LyW3L4xSfSpUtkkx3BRSKBxRX1HlNaqnMAoGCCqGSM49BAMCA0gAMEUCIQCtQu+f +QRaMGsvDPsGnd5QkAFij58WC5dDtlUS64C52QgIgcLRRlKsACM0Cwa7x2unXpQ0U +pdHlel+94ytp93+Axhs= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..1ce95e85 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQND+vNQvf96L9SYwvQTBDjTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +m2y+7G8u8vtYQ3ZDiGoLvvuAnOCixL7wMWmphDF+avRFPFduPCMZJDRH8zdgsCJ1 +9ZXt8WE95VmuJ0ruLuLXx6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgM9YX1dssBTAvJbcvjFJ9 +KlS2STHcFFIoHFFfUeU1qqcwCgYIKoZIzj0EAwIDRwAwRAIgCwYcTSZrtNVKm/Zs +U4o5DJNdISYx6ccTjRTDGU6LHwICIAi4L9AvsWBKPLoI1T+/x1ryygaUdlA/Rf8k +5wy4c0FT +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/2061a8f85f429a7537b94ecec99f965dfd6a82c2bc930cfb2b610ae902a55f54_sk b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/2061a8f85f429a7537b94ecec99f965dfd6a82c2bc930cfb2b610ae902a55f54_sk new file mode 100755 index 00000000..95dbdef8 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/2061a8f85f429a7537b94ecec99f965dfd6a82c2bc930cfb2b610ae902a55f54_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg7xcV3kqbOVfGytlt +CQemuRQpKmsv9J6MVtotCqM07PmhRANCAAQKELpP1/FbzTQx9UN7kQrMpHMbN6VI +/ogCv07aJrRKOxyTbSrAwSUWrXDCADVPCMg0yyhEtTh6RHrw8/dpSQCI +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem new file mode 100644 index 00000000..0af88613 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQTwFB0o94enEumYPyOiNlLjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEChC6T9fxW800MfVDe5EKzKRzGzelSP6I +Ar9O2ia0Sjsck20qwMElFq1wwgA1TwjINMsoRLU4ekR68PP3aUkAiKNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgM9YX1dssBTAv +JbcvjFJ9KlS2STHcFFIoHFFfUeU1qqcwCgYIKoZIzj0EAwIDSAAwRQIhAPxKpYhx +tt5iFOwbOoAtVwdQrGXL3szd4Xta/sCKi+XzAiAq1pRk5y1jdqmJn93bSlDqkjCP +h7Jl6lQ0AGE+HHcx6w== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt new file mode 100644 index 00000000..ee492d04 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt @@ -0,0 +1,16 @@ +-----BEGIN CERTIFICATE----- +MIICdDCCAhqgAwIBAgIRANn/8Nyw0kAWFKlpcceF010wCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABIVC53Bbxse1Emvhy/+jolt2lrD9 +6N11qRtjY8cPClWZ7syB1Yii0fktJpvF73kld6WkRfXIO5BXiWkmu2m8bvqjgaMw +gaAwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcD +AjAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIIza2LfHnMG2pvhxvP6BuMZpfCoQ +pgyTWnax39lZmsykMDQGA1UdEQQtMCuCFnBlZXIwLm9yZzIuZXhhbXBsZS5jb22C +BXBlZXIwggpwZWVyMC1vcmcyMAoGCCqGSM49BAMCA0gAMEUCIQDh8feB+LnWxE2u +L/J+f3r/XZS1KGNQEV0rget+dPXc4QIgeunFhliR+wwJ1Bh72aXJjIZ/y4l0FcvB +eYPc+DG8a8U= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key new file mode 100755 index 00000000..52f1ed44 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgl6OEkTeiBO8sW9ai +j+NDTaMzOLi9BWxwye1UI9gaOaehRANCAASFQudwW8bHtRJr4cv/o6Jbdpaw/ejd +dakbY2PHDwpVme7MgdWIotH5LSabxe95JXelpEX1yDuQV4lpJrtpvG76 +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem new file mode 100644 index 00000000..66891db2 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJuAabxDD1W69XuRdd0x1/8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAtvxQJRW91s20gvOVLRoidAIjeJ9hH+ +h4V2UyIiHlv9cKFI5473jABQM879//0brYQAe2+K8+Oz9F7Z00clmLyjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDPWF9XbLAUw +LyW3L4xSfSpUtkkx3BRSKBxRX1HlNaqnMAoGCCqGSM49BAMCA0gAMEUCIQCtQu+f +QRaMGsvDPsGnd5QkAFij58WC5dDtlUS64C52QgIgcLRRlKsACM0Cwa7x2unXpQ0U +pdHlel+94ytp93+Axhs= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..1ce95e85 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQND+vNQvf96L9SYwvQTBDjTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +m2y+7G8u8vtYQ3ZDiGoLvvuAnOCixL7wMWmphDF+avRFPFduPCMZJDRH8zdgsCJ1 +9ZXt8WE95VmuJ0ruLuLXx6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgM9YX1dssBTAvJbcvjFJ9 +KlS2STHcFFIoHFFfUeU1qqcwCgYIKoZIzj0EAwIDRwAwRAIgCwYcTSZrtNVKm/Zs +U4o5DJNdISYx6ccTjRTDGU6LHwICIAi4L9AvsWBKPLoI1T+/x1ryygaUdlA/Rf8k +5wy4c0FT +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/62993ae9b25b91f739f94c69ecb2b4ceb8fb0a93854f24f3d60d15f7d330be0d_sk b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/62993ae9b25b91f739f94c69ecb2b4ceb8fb0a93854f24f3d60d15f7d330be0d_sk new file mode 100755 index 00000000..9cb46703 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/62993ae9b25b91f739f94c69ecb2b4ceb8fb0a93854f24f3d60d15f7d330be0d_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQggO1idt7qN9CnVhwX +3LjuInHGbL1O/zfrUm6g1+ozuj2hRANCAAQr7Y0EgX53WXUPLSqMoRM8PaIVOeEa +SJHmgIpu8/20CdW9NiiXcVvhZiRAHwK+gCAvAZ/8d6vDuP7FCyrrzbCd +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem new file mode 100644 index 00000000..7c4b8989 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKX2RZdUhSdYNG5J4w75/MUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCvtjQSBfndZdQ8tKoyhEzw9ohU54RpI +keaAim7z/bQJ1b02KJdxW+FmJEAfAr6AIC8Bn/x3q8O4/sULKuvNsJ2jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDPWF9XbLAUw +LyW3L4xSfSpUtkkx3BRSKBxRX1HlNaqnMAoGCCqGSM49BAMCA0cAMEQCIEAfijF2 +u/uQGo1L6hnd86ydL8YA/CbKnNb9Yp8QJft3AiBnj05aPC+YmZlt+c12/DmAA84N +hfOG4ALhki9kx3yXXw== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt new file mode 100644 index 00000000..230ae1e3 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt @@ -0,0 +1,16 @@ +-----BEGIN CERTIFICATE----- +MIICczCCAhmgAwIBAgIQTprsHIesSjvr/DkrBSbqgDAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29t +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEDysTlWe06Zz5Z4ZwcuPOBNG/WT1P +1RlDuS6v+8BY0hBKifzrIVyQjuW0sMKEMwAEcutTUuyQkx8SOUphUZioGqOBozCB +oDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMC +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgjNrYt8ecwbam+HG8/oG4xml8KhCm +DJNadrHf2VmazKQwNAYDVR0RBC0wK4IWcGVlcjEub3JnMi5leGFtcGxlLmNvbYIF +cGVlcjGCCnBlZXIxLW9yZzIwCgYIKoZIzj0EAwIDSAAwRQIhANnJ4WXlEBGVAoPV +k6m2j2XEgOY1aStJRF6LeWD2LrGVAiBqEXpR6ZlzONt0li11BoHotdMAhf2LMU3+ +iuz5YS/gxw== +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key new file mode 100755 index 00000000..bdef7b97 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgM2W3IQ+I6zC3zr+Y +ETxP7xsC9LLwxfdCGJVU9O6iaaOhRANCAAQPKxOVZ7TpnPlnhnBy484E0b9ZPU/V +GUO5Lq/7wFjSEEqJ/OshXJCO5bSwwoQzAARy61NS7JCTHxI5SmFRmKga +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/tlsca/8cdad8b7c79cc1b6a6f871bcfe81b8c6697c2a10a60c935a76b1dfd9599acca4_sk b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/tlsca/8cdad8b7c79cc1b6a6f871bcfe81b8c6697c2a10a60c935a76b1dfd9599acca4_sk new file mode 100755 index 00000000..22fa267c --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/tlsca/8cdad8b7c79cc1b6a6f871bcfe81b8c6697c2a10a60c935a76b1dfd9599acca4_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgQ0rr7NeDHuanRh/l +pfsyFassnHGIKvD10V/6gfosakahRANCAASYyiXxD9CH58zbUM8Vq7FIBxOKjDt0 +Un6/ecGnWv1XZaTiVYiCFZuIr9N3xGOt6E/StjOJr2lTFJtyqo2hdy4Y +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem new file mode 100644 index 00000000..66891db2 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJuAabxDD1W69XuRdd0x1/8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAtvxQJRW91s20gvOVLRoidAIjeJ9hH+ +h4V2UyIiHlv9cKFI5473jABQM879//0brYQAe2+K8+Oz9F7Z00clmLyjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDPWF9XbLAUw +LyW3L4xSfSpUtkkx3BRSKBxRX1HlNaqnMAoGCCqGSM49BAMCA0gAMEUCIQCtQu+f +QRaMGsvDPsGnd5QkAFij58WC5dDtlUS64C52QgIgcLRRlKsACM0Cwa7x2unXpQ0U +pdHlel+94ytp93+Axhs= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..1ce95e85 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQND+vNQvf96L9SYwvQTBDjTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +m2y+7G8u8vtYQ3ZDiGoLvvuAnOCixL7wMWmphDF+avRFPFduPCMZJDRH8zdgsCJ1 +9ZXt8WE95VmuJ0ruLuLXx6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgM9YX1dssBTAvJbcvjFJ9 +KlS2STHcFFIoHFFfUeU1qqcwCgYIKoZIzj0EAwIDRwAwRAIgCwYcTSZrtNVKm/Zs +U4o5DJNdISYx6ccTjRTDGU6LHwICIAi4L9AvsWBKPLoI1T+/x1ryygaUdlA/Rf8k +5wy4c0FT +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/e9754fa82f6c8af2a0f8224f4abd9525ab61a579ea92373837efe505b9cef4aa_sk b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/e9754fa82f6c8af2a0f8224f4abd9525ab61a579ea92373837efe505b9cef4aa_sk new file mode 100755 index 00000000..2523ff04 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/e9754fa82f6c8af2a0f8224f4abd9525ab61a579ea92373837efe505b9cef4aa_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgwIUAUQoxRfNkSlmi +p7j/5ngJZMxaFiQ2Cun6fFE9MQqhRANCAAQLb8UCUVvdbNtILzlS0aInQCI3ifYR +/oeFdlMiIh5b/XChSOeO94wAUDPO/f/9G62EAHtvivPjs/Re2dNHJZi8 +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem new file mode 100644 index 00000000..66891db2 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJuAabxDD1W69XuRdd0x1/8wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAtvxQJRW91s20gvOVLRoidAIjeJ9hH+ +h4V2UyIiHlv9cKFI5473jABQM879//0brYQAe2+K8+Oz9F7Z00clmLyjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDPWF9XbLAUw +LyW3L4xSfSpUtkkx3BRSKBxRX1HlNaqnMAoGCCqGSM49BAMCA0gAMEUCIQCtQu+f +QRaMGsvDPsGnd5QkAFij58WC5dDtlUS64C52QgIgcLRRlKsACM0Cwa7x2unXpQ0U +pdHlel+94ytp93+Axhs= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt new file mode 100644 index 00000000..6668de19 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICOzCCAeKgAwIBAgIRAKgoV9x60cm/QIbRs8NVI8MwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABHh5lRMg+cBPubpWQ4QyeVT9OjPs +ZppWGtoIKqNWz5LSqrbm1mf+KWazjy4fq6g52BvsC0ofjwMQ8NISVn2cw66jbDBq +MA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCCM2ti3x5zBtqb4cbz+gbjGaXwqEKYM +k1p2sd/ZWZrMpDAKBggqhkjOPQQDAgNHADBEAiA1HUa7KqTPTQlFUOpEgc7YN7co +IpGX+iBzlsvukE41BgIgWALzgHOP21DYtzxr7XkUfj+rzKGBwkXzUJH8ikzKpf0= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key new file mode 100755 index 00000000..11f98fba --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgk0re3Pu8qCVGbDPg +Q9yclBhEVeIWNIMmCvp71dQC9YuhRANCAAR4eZUTIPnAT7m6VkOEMnlU/Toz7Gaa +VhraCCqjVs+S0qq25tZn/ilms48uH6uoOdgb7AtKH48DEPDSElZ9nMOu +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/tlsca.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/tlsca.example.com-cert.pem new file mode 100644 index 00000000..b90a5119 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/tlsca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRAO9eQIvFWTVu6P3wG7qyxwMwCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQVkav3qnUaq2sT5fXa +w7PC66C1tNvm0JEp8BnNrNa9FTqHve8J39rpLim7axRtVJgH0pp/n91Gc9Xzs3Lc +Wuj9o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCBAi+/AxDDh3cwnuAXW3vuXv4wjqV30WOuBa6Sh +mD8jYjAKBggqhkjOPQQDAgNIADBFAiEAj8nHgKRVcScP5atiRilix5AULPsxEcLx +tkazxYlUqb0CIHuBnz2s+DCiAfvQyBgsN6vUzoFfwylS3+e7o/sgpU3R +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem new file mode 100644 index 00000000..2ed5c08e --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAM0I/3xBuPvlatp8ccb4jlswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWVXNlcjFAb3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABDT3tuCOxr6hA0XSKRz2JFpMBEFR9zkF +XTF6b1dr8R+tbNCb7qQ0R0kJS/3vlFAhm5rW+ARpPX6w0IfP/Rb5EJujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDPWF9XbLAUw +LyW3L4xSfSpUtkkx3BRSKBxRX1HlNaqnMAoGCCqGSM49BAMCA0gAMEUCIQC9JEUq +I8hHqpKanrgr+hw3yQiM0OwYpAfNVcdhDgjdVQIgLoWp2Zg1ZcmTYRziym3xuJgO +uVihuwelIe4a2dNrKjs= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..1ce95e85 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQND+vNQvf96L9SYwvQTBDjTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2NTJa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +m2y+7G8u8vtYQ3ZDiGoLvvuAnOCixL7wMWmphDF+avRFPFduPCMZJDRH8zdgsCJ1 +9ZXt8WE95VmuJ0ruLuLXx6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgM9YX1dssBTAvJbcvjFJ9 +KlS2STHcFFIoHFFfUeU1qqcwCgYIKoZIzj0EAwIDRwAwRAIgCwYcTSZrtNVKm/Zs +U4o5DJNdISYx6ccTjRTDGU6LHwICIAi4L9AvsWBKPLoI1T+/x1ryygaUdlA/Rf8k +5wy4c0FT +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/15146807ec535a8de90669280612d61c38317b73e13147e4d475ddb27e3aa09a_sk b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/15146807ec535a8de90669280612d61c38317b73e13147e4d475ddb27e3aa09a_sk new file mode 100755 index 00000000..b7073aec --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/15146807ec535a8de90669280612d61c38317b73e13147e4d475ddb27e3aa09a_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgRMvZF00suwl2BXiX +KG0doZDRcoAwgZF5Uw15S21553ihRANCAAQ097bgjsa+oQNF0ikc9iRaTARBUfc5 +BV0xem9Xa/EfrWzQm+6kNEdJCUv975RQIZua1vgEaT1+sNCHz/0W+RCb +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem new file mode 100644 index 00000000..2ed5c08e --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAM0I/3xBuPvlatp8ccb4jlswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAwNjUy +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWVXNlcjFAb3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABDT3tuCOxr6hA0XSKRz2JFpMBEFR9zkF +XTF6b1dr8R+tbNCb7qQ0R0kJS/3vlFAhm5rW+ARpPX6w0IfP/Rb5EJujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDPWF9XbLAUw +LyW3L4xSfSpUtkkx3BRSKBxRX1HlNaqnMAoGCCqGSM49BAMCA0gAMEUCIQC9JEUq +I8hHqpKanrgr+hw3yQiM0OwYpAfNVcdhDgjdVQIgLoWp2Zg1ZcmTYRziym3xuJgO +uVihuwelIe4a2dNrKjs= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt new file mode 100644 index 00000000..dd721597 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSjCCAfCgAwIBAgIRAMeSF9T/Vb4bXPcnuNyvshcwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgxMDI3MTAwNjUyWhcNMjgxMDI0MTAw +NjUyWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABJjKJfEP0IfnzNtQzxWrsUgHE4qMO3RSfr95wada/VdlpOJViIIVm4iv +03fEY63oT9K2M4mvaVMUm3KqjaF3LhijXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIIza2LfHnMG2 +pvhxvP6BuMZpfCoQpgyTWnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQDAicWx +8fvXXPfnOxIVi2jco3zlC/YazQ6rDRccNEhkLAIgJKEcFtpPgtCYnvZvfJUGgCqf +DfT9aZvwxPyfUGHmVyk= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.crt b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.crt new file mode 100644 index 00000000..e3d4e508 --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICOzCCAeGgAwIBAgIQTC2OuxD0GhMhFroDeAJ3CTAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMi5leGFtcGxlLmNvbTAeFw0xODEwMjcxMDA2NTJaFw0yODEwMjQxMDA2 +NTJaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZVc2VyMUBvcmcyLmV4YW1wbGUuY29t +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEzTqz7ZYoqHmw0IUTBDniLe8bngwz +nQlAhl0Ya3NrDtmHOFzS8pd+L/GZn3ot4JC9Luu7SPmg8LVceH8MW4VmX6NsMGow +DgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIIza2LfHnMG2pvhxvP6BuMZpfCoQpgyT +Wnax39lZmsykMAoGCCqGSM49BAMCA0gAMEUCIQCxkh5t6B6h0K6wrwtJE/3Q+xdr ++im9b3onN08mdA71DQIgYbdSWJ5noVnyo8dUuYp+b6qCwE3MF9rZ/e0TJHc1uog= +-----END CERTIFICATE----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.key b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.key new file mode 100755 index 00000000..e423415b --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgWgwDQY/XoNIrFuqM +3M3P3H1pHt/xztmbqChL+fpc0hGhRANCAATNOrPtliioebDQhRMEOeIt7xueDDOd +CUCGXRhrc2sO2Yc4XNLyl34v8Zmfei3gkL0u67tI+aDwtVx4fwxbhWZf +-----END PRIVATE KEY----- diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/explorer-artifacts/config.json b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/explorer-artifacts/config.json new file mode 100644 index 00000000..8b8831cb --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/explorer-artifacts/config.json @@ -0,0 +1,77 @@ +{ + "GOPATH": "/opt/gopath", + "channel": "businesschannel", + "enableTls": false, + "eventWaitTime": "30000", + "host": "explorer", + "keyValueStore": "/tmp/fabric-client-kvs", + "mysql": { + "database": "fabricexplorer", + "host": "localhost", + "passwd": "root", + "port": "3306", + "username": "root" + }, + "network-config": { + "orderer": [ + { + "server-host": "orderer0.ordererorg", + "url": "grpc://orderer0:7050" + } + ], + "org1": { + "admin": { + "cert": "/first-network/crypto-config/peerOrganizations/org1/users/Admin@org1/msp/signcerts", + "key": "/first-network/crypto-config/peerOrganizations/org1/users/Admin@org1/msp/keystore" + }, + "ca": "http://ca-org1:7054", + "mspid": "Org1MSP", + "name": "peerorg1", + "peer0": { + "events": "grpc://peer0-org1:7053", + "requests": "grpc://peer0-org1:7051", + "server-hostname": "peer0.org1", + "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org1/peers/peer0.org1/tls/ca.crt" + }, + "peer1": { + "events": "grpc://peer1-org1:7053", + "requests": "grpc://peer1-org1:7051", + "server-hostname": "peer1.org1", + "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org1/peers/peer1.org1/tls/ca.crt" + } + }, + "org2": { + "admin": { + "cert": "/first-network/crypto-config/peerOrganizations/org2/users/Admin@org2/msp/signcerts", + "key": "/first-network/crypto-config/peerOrganizations/org2/users/Admin@org2/msp/keystore" + }, + "ca": "http://ca-org2:7054", + "mspid": "Org2MSP", + "name": "peerorg2", + "peer0": { + "events": "grpc://peer0-org2:7053", + "requests": "grpc://peer0-org2:7051", + "server-hostname": "peer0.org2", + "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org2/peers/peer0.org2/tls/ca.crt" + }, + "peer1": { + "events": "grpc://peer1-org2:7053", + "requests": "grpc://peer1-org2:7051", + "server-hostname": "peer1.org2", + "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org2/peers/peer1.org2/tls/ca.crt" + } + } + }, + "org": [ + "org1", + "org2" + ], + "peer": "peer0", + "port": "8080", + "users": [ + { + "secret": "adminpw", + "username": "admin" + } + ] +} diff --git a/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/explorer-artifacts/fabricexplorer.sql b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/explorer-artifacts/fabricexplorer.sql new file mode 100644 index 00000000..557abb4c --- /dev/null +++ b/src/agent/k8s/cluster_resources_kafka/fabric-1.1/resources/explorer-artifacts/fabricexplorer.sql @@ -0,0 +1,115 @@ +/* + Navicat MySQL Data Transfer + + Source Server : 172.16.10.162 + Source Server Type : MySQL + Source Server Version : 50635 + Source Host : 172.16.10.162 + Source Database : fabricexplorer + + Target Server Type : MySQL + Target Server Version : 50635 + File Encoding : utf-8 + + Date: 07/07/2017 10:14:31 AM +*/ + +DROP DATABASE IF EXISTS `fabricexplorer`; + +CREATE DATABASE fabricexplorer; + +use fabricexplorer; +SET NAMES utf8; +SET FOREIGN_KEY_CHECKS = 0; + +-- ---------------------------- +-- Table structure for `blocks` +-- ---------------------------- +DROP TABLE IF EXISTS `blocks`; +CREATE TABLE `blocks` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', + `blocknum` int(11) DEFAULT NULL, + `datahash` varchar(256) DEFAULT NULL, + `prehash` varchar(256) DEFAULT NULL, + `channelname` varchar(128) DEFAULT NULL, + `txcount` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='blocks'; + +-- ---------------------------- +-- Table structure for `chaincodes` +-- ---------------------------- +DROP TABLE IF EXISTS `chaincodes`; +CREATE TABLE `chaincodes` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(255) DEFAULT NULL, + `version` varchar(255) DEFAULT NULL, + `path` varchar(255) DEFAULT NULL, + `channelname` varchar(255) DEFAULT NULL, + `txcount` int(11) DEFAULT '0', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT; + +-- ---------------------------- +-- Table structure for `channel` +-- ---------------------------- +DROP TABLE IF EXISTS `channel`; +CREATE TABLE `channel` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', + `name` varchar(64) DEFAULT NULL, + `blocks` int(11) DEFAULT NULL, + `trans` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='channel'; + +-- ---------------------------- +-- Table structure for `peer` +-- ---------------------------- +DROP TABLE IF EXISTS `peer`; +CREATE TABLE `peer` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', + `org` int(11) DEFAULT NULL, + `name` varchar(64) DEFAULT NULL, + `mspid` varchar(64) DEFAULT NULL, + `requests` varchar(64) DEFAULT NULL, + `events` varchar(64) DEFAULT NULL, + `server_hostname` varchar(64) DEFAULT NULL, + `createdt` datetime DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='peer'; + +-- ---------------------------- +-- Table structure for `peer_ref_channel` +-- ---------------------------- +DROP TABLE IF EXISTS `peer_ref_channel`; +CREATE TABLE `peer_ref_channel` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', + `peerid` int(11) DEFAULT NULL, + `channelid` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT=''; + +-- ---------------------------- +-- Table structure for `transaction` +-- ---------------------------- +DROP TABLE IF EXISTS `transaction`; +CREATE TABLE `transaction` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', + `channelname` varchar(64) DEFAULT NULL, + `blockid` int(11) DEFAULT NULL, + `txhash` varchar(256) DEFAULT NULL, + `createdt` datetime DEFAULT NULL, + `chaincodename` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='transtaion'; + +-- ---------------------------- +-- Table structure for `write_lock` +-- ---------------------------- +DROP TABLE IF EXISTS `write_lock`; +CREATE TABLE `write_lock` ( + `write_lock` int(1) NOT NULL AUTO_INCREMENT, + PRIMARY KEY (`write_lock`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_bin; + +SET FOREIGN_KEY_CHECKS = 1; diff --git a/src/agent/k8s/templates/fabric-1.1/fabric-1-0-explorer.tpl b/src/agent/k8s/templates/fabric-1.1/fabric-1-0-explorer.tpl new file mode 100644 index 00000000..bc4bc1fc --- /dev/null +++ b/src/agent/k8s/templates/fabric-1.1/fabric-1-0-explorer.tpl @@ -0,0 +1,93 @@ +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: {{clusterName}}-explorer-pv +spec: + capacity: + storage: 500Mi + accessModes: + - ReadWriteMany + claimRef: + namespace: {{clusterName}} + name: {{clusterName}}-explorer-pvc + nfs: + path: /{{clusterName}}/resources/ + server: {{nfsServer}} # change to your nfs server ip here. +--- + +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + namespace: {{clusterName}} + name: {{clusterName}}-explorer-pvc +spec: + accessModes: + - ReadWriteMany + resources: + requests: + storage: 10Mi + +--- +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + namespace: {{clusterName}} + name: fabric-explorer +spec: + replicas: 1 + strategy: {} + template: + metadata: + labels: + app: explorer + spec: + containers: + - name: mysql + image: mysql:5.7 + ports: + - containerPort: 3306 + env: + - name: MYSQL_ROOT_PASSWORD + value: root + - name: MYSQL_DATABASE + value: fabricexplorer + volumeMounts: + - mountPath: /docker-entrypoint-initdb.d/fabricexplorer.sql + name: explorer-resources + subPath: explorer-artifacts/fabricexplorer.sql + + - name: fabric-explorer + imagePullPolicy: IfNotPresent + image: vmware/fabric-explorer:1.0 + command: [ "/bin/bash", "-c", "--" ] + args: ["sleep 10;node main.js 2>&1"] + ports: + - containerPort: 8080 + volumeMounts: + - mountPath: /blockchain-explorer/config.json + name: explorer-resources + subPath: explorer-artifacts/config.json + - mountPath: /blockchain-explorer/first-network/crypto-config + name: explorer-resources + subPath: crypto-config + volumes: + - name: explorer-resources + persistentVolumeClaim: + claimName: {{clusterName}}-explorer-pvc +--- +apiVersion: v1 +kind: Service +metadata: + namespace: {{clusterName}} + name: {{clusterName}}-fabric-explorer +spec: + selector: + app: explorer + type: NodePort + ports: + - name: explorer-server + protocol: TCP + port: 8080 + targetPort: 8080 + nodePort: {{nodePort}} diff --git a/src/agent/k8s/templates/fabric-1.1/namespace.tpl b/src/agent/k8s/templates/fabric-1.1/namespace.tpl new file mode 100644 index 00000000..ea449d8b --- /dev/null +++ b/src/agent/k8s/templates/fabric-1.1/namespace.tpl @@ -0,0 +1,5 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: {{clusterName}} + diff --git a/src/agent/k8s/templates/fabric-1.1/orderer0.ordererorg-kafka.tpl b/src/agent/k8s/templates/fabric-1.1/orderer0.ordererorg-kafka.tpl new file mode 100644 index 00000000..7e553a52 --- /dev/null +++ b/src/agent/k8s/templates/fabric-1.1/orderer0.ordererorg-kafka.tpl @@ -0,0 +1,423 @@ +--- +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + namespace: {{clusterName}} + name: orderer0-ordererorg +spec: + replicas: 1 + strategy: {} + template: + metadata: + labels: + app: hyperledger + role: orderer + org: ordererorg + orderer-id: orderer0 + spec: + containers: + - name: orderer0-ordererorg + image: hyperledger/fabric-orderer:x86_64-1.1.0 + env: + - name: ORDERER_GENERAL_LOGLEVEL + value: debug + - name: ORDERER_GENERAL_LISTENADDRESS + value: 0.0.0.0 + - name: ORDERER_GENERAL_GENESISMETHOD + value: file + - name: ORDERER_GENERAL_GENESISFILE + value: /var/hyperledger/orderer/orderer.genesis.block + - name: ORDERER_GENERAL_LOCALMSPID + value: OrdererMSP + - name: ORDERER_GENERAL_LOCALMSPDIR + value: /var/hyperledger/orderer/msp + - name: ORDERER_GENERAL_TLS_ENABLED + value: "true" + - name: ORDERER_GENERAL_TLS_PRIVATEKEY + value: /var/hyperledger/orderer/tls/server.key + - name: ORDERER_GENERAL_TLS_CERTIFICATE + value: /var/hyperledger/orderer/tls/server.crt + - name: ORDERER_GENERAL_TLS_ROOTCAS + value: '[/var/hyperledger/orderer/tls/ca.crt]' + - name: ORDERER_KAFKA_RETRY_SHORTINTERVAL + value: "5s" + - name: ORDERER_KAFKA_RETRY_SHORTTOTAL + value: "30s" + - name: ORDERER_KAFKA_VERBOSE + value: "true" + - name: ORDERER_KAFKA_BROKERS + value: '[kafka0:9092,kafka1:9092,kafka2:9092]' + workingDir: /opt/gopath/src/github.com/hyperledger/fabric/peer + ports: + - containerPort: 7050 + command: ["orderer"] + volumeMounts: + - mountPath: /var/hyperledger/orderer/msp + name: certificate + #subPath: crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp + subPath: orderers/orderer.example.com/msp + - mountPath: /var/hyperledger/orderer/tls + name: certificate + #subPath: crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ + subPath: orderers/orderer.example.com/tls + - mountPath: /var/hyperledger/orderer/orderer.genesis.block + name: certificate + subPath: orderer.genesis.block + - mountPath: /var/hyperledger/production + name: certificate + subPath: orderers/orderer.example.com/production + volumes: + - name: certificate + persistentVolumeClaim: + claimName: {{clusterName}}-ordererorg-pvc + +--- +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + namespace: {{clusterName}} + name: kafka0 +spec: + replicas: 1 + strategy: {} + template: + metadata: + labels: + app: hyperledger + role: kafka + org: kafkacluster + kafka-id: kafka0 + spec: + containers: + - name: kafka0 + image: hyperledger/fabric-kafka:0.4.8 + env: + - name: KAFKA_MESSAGE_MAX_BYTES + value: "1048576" + - name: KAFKA_REPLICA_FETCH_MAX_BYTES + value: "1048576" + - name: KAFKA_UNCLEAN_LEADER_ELECTION_ENABLE + value: "false" + - name: KAFKA_BROKER_ID + value: "0" + - name: KAFKA_MIN_INSYNC_REPLICAS + value: "2" + - name: KAFKA_DEFAULT_REPLICATION_FACTOR + value: "3" + - name: KAFKA_ZOOKEEPER_CONNECT + value: "zookeeper0:2181,zookeeper1:2181,zookeeper2:2181" + - name: KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS + value: "36000" + - name: KAFKA_ADVERTISED_HOST_NAME + value: "kafka0" + ports: + - containerPort: 9092 + +--- +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + namespace: {{clusterName}} + name: kafka1 +spec: + replicas: 1 + strategy: {} + template: + metadata: + labels: + app: hyperledger + role: kafka + org: kafkacluster + kafka-id: kafka1 + spec: + containers: + - name: kafka1 + image: hyperledger/fabric-kafka:0.4.8 + env: + - name: KAFKA_MESSAGE_MAX_BYTES + value: "1048576" + - name: KAFKA_REPLICA_FETCH_MAX_BYTES + value: "1048576" + - name: KAFKA_UNCLEAN_LEADER_ELECTION_ENABLE + value: "false" + - name: KAFKA_BROKER_ID + value: "1" + - name: KAFKA_MIN_INSYNC_REPLICAS + value: "2" + - name: KAFKA_DEFAULT_REPLICATION_FACTOR + value: "3" + - name: KAFKA_ZOOKEEPER_CONNECT + value: "zookeeper0:2181,zookeeper1:2181,zookeeper2:2181" + - name: KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS + value: "36000" + - name: KAFKA_ADVERTISED_HOST_NAME + value: "kafka1" + ports: + - containerPort: 9092 + +--- +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + namespace: {{clusterName}} + name: kafka2 +spec: + replicas: 1 + strategy: {} + template: + metadata: + labels: + app: hyperledger + role: kafka + org: kafkacluster + kafka-id: kafka2 + spec: + containers: + - name: kafka2 + image: hyperledger/fabric-kafka:0.4.8 + env: + - name: KAFKA_MESSAGE_MAX_BYTES + value: "1048576" + - name: KAFKA_REPLICA_FETCH_MAX_BYTES + value: "1048576" + - name: KAFKA_UNCLEAN_LEADER_ELECTION_ENABLE + value: "false" + - name: KAFKA_BROKER_ID + value: "2" + - name: KAFKA_MIN_INSYNC_REPLICAS + value: "2" + - name: KAFKA_DEFAULT_REPLICATION_FACTOR + value: "3" + - name: KAFKA_ZOOKEEPER_CONNECT + value: "zookeeper0:2181,zookeeper1:2181,zookeeper2:2181" + - name: KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS + value: "36000" + - name: KAFKA_ADVERTISED_HOST_NAME + value: "kafka2" + ports: + - containerPort: 9092 + +--- +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + namespace: {{clusterName}} + name: zookeeper0 +spec: + replicas: 1 + strategy: {} + template: + metadata: + labels: + app: hyperledger + role: zookeeper + org: kafkacluster + zookeeper-id: zookeeper0 + spec: + containers: + - name: zookeeper0 + image: hyperledger/fabric-zookeeper:0.4.8 + env: + - name: ZOO_MY_ID + value: "1" + - name: ZOO_SERVERS + value: "server.1=0.0.0.0:2888:3888 server.2=zookeeper1:2888:3888 server.3=zookeeper2:2888:3888" + ports: + - containerPort: 2181 + - containerPort: 2888 + - containerPort: 3888 + +--- +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + namespace: {{clusterName}} + name: zookeeper1 +spec: + replicas: 1 + strategy: {} + template: + metadata: + labels: + app: hyperledger + role: zookeeper + org: kafkacluster + zookeeper-id: zookeeper1 + spec: + containers: + - name: zookeeper1 + image: hyperledger/fabric-zookeeper:0.4.8 + env: + - name: ZOO_MY_ID + value: "2" + - name: ZOO_SERVERS + value: "server.1=zookeeper0:2888:3888 server.2=0.0.0.0:2888:3888 server.3=zookeeper2:2888:3888" + ports: + - containerPort: 2181 + - containerPort: 2888 + - containerPort: 3888 + +--- +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + namespace: {{clusterName}} + name: zookeeper2 +spec: + replicas: 1 + strategy: {} + template: + metadata: + labels: + app: hyperledger + role: zookeeper + org: kafkacluster + zookeeper-id: zookeeper2 + spec: + containers: + - name: zookeeper2 + image: hyperledger/fabric-zookeeper:0.4.8 + env: + - name: ZOO_MY_ID + value: "3" + - name: ZOO_SERVERS + value: "server.1=zookeeper0:2888:3888 server.2=zookeeper1:2888:3888 server.3=0.0.0.0:2888:3888" + ports: + - containerPort: 2181 + - containerPort: 2888 + - containerPort: 3888 + +--- +apiVersion: v1 +kind: Service +metadata: + namespace: {{clusterName}} + name: kafka0 +spec: + selector: + app: hyperledger + role: kafka + kafka-id: kafka0 + org: kafkacluster + clusterIP: None + ports: + - name: listen-endpoint + protocol: TCP + port: 9092 + +--- +apiVersion: v1 +kind: Service +metadata: + namespace: {{clusterName}} + name: kafka1 +spec: + selector: + app: hyperledger + role: kafka + kafka-id: kafka1 + org: kafkacluster + clusterIP: None + ports: + - name: listen-endpoint + protocol: TCP + port: 9092 +--- +apiVersion: v1 +kind: Service +metadata: + namespace: {{clusterName}} + name: kafka2 +spec: + selector: + app: hyperledger + role: kafka + kafka-id: kafka2 + org: kafkacluster + clusterIP: None + ports: + - name: listen-endpoint + protocol: TCP + port: 9092 + +--- +apiVersion: v1 +kind: Service +metadata: + namespace: {{clusterName}} + name: zookeeper0 +spec: + selector: + app: hyperledger + role: zookeeper + zookeeper-id: zookeeper0 + org: kafkacluster + clusterIP: None + ports: + - name: client + port: 2181 + - name: peer + port: 2888 + - name: leader-election + port: 3888 +--- +apiVersion: v1 +kind: Service +metadata: + namespace: {{clusterName}} + name: zookeeper1 +spec: + selector: + app: hyperledger + role: zookeeper + zookeeper-id: zookeeper1 + org: kafkacluster + clusterIP: None + ports: + - name: client + port: 2181 + - name: peer + port: 2888 + - name: leader-election + port: 3888 + +--- +apiVersion: v1 +kind: Service +metadata: + namespace: {{clusterName}} + name: zookeeper2 +spec: + selector: + app: hyperledger + role: zookeeper + zookeeper-id: zookeeper2 + org: kafkacluster + clusterIP: None + ports: + - name: client + port: 2181 + - name: peer + port: 2888 + - name: leader-election + port: 3888 + +--- +apiVersion: v1 +kind: Service +metadata: + name: orderer0 + namespace: {{clusterName}} +spec: + selector: + app: hyperledger + role: orderer + orderer-id: orderer0 + org: ordererorg + type: NodePort + ports: + - name: listen-endpoint + protocol: TCP + port: 7050 + targetPort: 7050 + nodePort: {{nodePort}} diff --git a/src/agent/k8s/templates/fabric-1.1/orderer0.ordererorg.tpl b/src/agent/k8s/templates/fabric-1.1/orderer0.ordererorg.tpl new file mode 100644 index 00000000..63e5f228 --- /dev/null +++ b/src/agent/k8s/templates/fabric-1.1/orderer0.ordererorg.tpl @@ -0,0 +1,86 @@ +--- +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + namespace: {{clusterName}} + name: orderer0-ordererorg +spec: + replicas: 1 + strategy: {} + template: + metadata: + labels: + app: hyperledger + role: orderer + org: ordererorg + orderer-id: orderer0 + spec: + containers: + - name: orderer0-ordererorg + image: hyperledger/fabric-orderer:x86_64-1.1.0 + env: + - name: ORDERER_GENERAL_LOGLEVEL + value: debug + - name: ORDERER_GENERAL_LISTENADDRESS + value: 0.0.0.0 + - name: ORDERER_GENERAL_GENESISMETHOD + value: file + - name: ORDERER_GENERAL_GENESISFILE + value: /var/hyperledger/orderer/orderer.genesis.block + - name: ORDERER_GENERAL_LOCALMSPID + value: OrdererMSP + - name: ORDERER_GENERAL_LOCALMSPDIR + value: /var/hyperledger/orderer/msp + - name: ORDERER_GENERAL_TLS_ENABLED + value: "true" + - name: ORDERER_GENERAL_TLS_PRIVATEKEY + value: /var/hyperledger/orderer/tls/server.key + - name: ORDERER_GENERAL_TLS_CERTIFICATE + value: /var/hyperledger/orderer/tls/server.crt + - name: ORDERER_GENERAL_TLS_ROOTCAS + value: '[/var/hyperledger/orderer/tls/ca.crt]' + workingDir: /opt/gopath/src/github.com/hyperledger/fabric/peer + ports: + - containerPort: 7050 + command: ["orderer"] + volumeMounts: + - mountPath: /var/hyperledger/orderer/msp + name: certificate + subPath: orderers/orderer.example.com/msp + - mountPath: /var/hyperledger/orderer/tls + name: certificate + #subPath: crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ + subPath: orderers/orderer.example.com/tls + - mountPath: /var/hyperledger/orderer/orderer.genesis.block + name: certificate + subPath: orderer.genesis.block + - mountPath: /var/hyperledger/production + name: certificate + subPath: orderers/orderer.example.com/production + volumes: + - name: certificate + persistentVolumeClaim: + claimName: {{clusterName}}-ordererorg-pvc + #persistentVolumeClaim: + # claimName: nfs + + +--- +apiVersion: v1 +kind: Service +metadata: + name: orderer0 + namespace: {{clusterName}} +spec: + selector: + app: hyperledger + role: orderer + orderer-id: orderer0 + org: ordererorg + type: NodePort + ports: + - name: listen-endpoint + protocol: TCP + port: 7050 + targetPort: 7050 + nodePort: {{nodePort}} diff --git a/src/agent/k8s/templates/fabric-1.1/ordererorg-pvc.tpl b/src/agent/k8s/templates/fabric-1.1/ordererorg-pvc.tpl new file mode 100644 index 00000000..bb0115e7 --- /dev/null +++ b/src/agent/k8s/templates/fabric-1.1/ordererorg-pvc.tpl @@ -0,0 +1,31 @@ +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: {{clusterName}}-ordererorg-pv +spec: + capacity: + storage: 500Mi + accessModes: + - ReadWriteMany + claimRef: + namespace: {{clusterName}} + name: {{clusterName}}-ordererorg-pvc + nfs: + path: /{{clusterName}}/resources/crypto-config/ordererOrganizations/example.com + server: {{nfsServer}} #change to your nfs server ip here + +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + namespace: {{clusterName}} + name: {{clusterName}}-ordererorg-pvc +spec: + accessModes: + - ReadWriteMany + resources: + requests: + storage: 10Mi + +--- diff --git a/src/agent/k8s/templates/fabric-1.1/org1-ca.tpl b/src/agent/k8s/templates/fabric-1.1/org1-ca.tpl new file mode 100644 index 00000000..cdc632b5 --- /dev/null +++ b/src/agent/k8s/templates/fabric-1.1/org1-ca.tpl @@ -0,0 +1,65 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + namespace: {{clusterName}} + name: ca-org1 +spec: + replicas: 1 + strategy: {} + template: + metadata: + labels: + app: hyperledger + role: ca + org: org1 + name: ca + spec: + containers: + - name: ca + image: hyperledger/fabric-ca:x86_64-1.1.0 + env: + - name: FABRIC_CA_HOME + value: /etc/hyperledger/fabric-ca-server + - name: FABRIC_CA_SERVER_CA_NAME + value: ca + - name: FABRIC_CA_SERVER_TLS_ENABLED + value: "true" + - name: FABRIC_CA_SERVER_TLS_CERTFILE + value: /etc/hyperledger/fabric-ca-server-config/ca.org1.example.com-cert.pem + - name: FABRIC_CA_SERVER_TLS_KEYFILE + value: /etc/hyperledger/fabric-ca-server-config/325aba0f5711d0298bb5812da89297e3dd52d66c40899cda2b43c9420cb21868_sk + ports: + - containerPort: 7054 + command: ["sh"] + args: ["-c", " fabric-ca-server start --ca.certfile /etc/hyperledger/fabric-ca-server-config/ca.org1.example.com-cert.pem --ca.keyfile /etc/hyperledger/fabric-ca-server-config/325aba0f5711d0298bb5812da89297e3dd52d66c40899cda2b43c9420cb21868_sk -b admin:adminpw -d "] + volumeMounts: + - mountPath: /etc/hyperledger/fabric-ca-server-config + name: certificate + subPath: ca/ + - mountPath: /etc/hyperledger/fabric-ca-server + name: certificate + subPath: fabric-ca-server/ + volumes: + - name: certificate + persistentVolumeClaim: + claimName: {{clusterName}}-org1-pvc + +--- +apiVersion: v1 +kind: Service +metadata: + namespace: {{clusterName}} + name: ca-org1 +spec: + selector: + app: hyperledger + role: ca + org: org1 + name: ca + type: NodePort + ports: + - name: endpoint + protocol: TCP + port: 7054 + targetPort: 7054 + nodePort: {{nodePort}} diff --git a/src/agent/k8s/templates/fabric-1.1/org1-cli.tpl b/src/agent/k8s/templates/fabric-1.1/org1-cli.tpl new file mode 100644 index 00000000..605d8847 --- /dev/null +++ b/src/agent/k8s/templates/fabric-1.1/org1-cli.tpl @@ -0,0 +1,101 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: {{clusterName}}-org1-resources-pv +spec: + capacity: + storage: 500Mi + accessModes: + - ReadWriteMany + claimRef: + namespace: {{clusterName}} + name: {{clusterName}}-org1-resources-pvc + nfs: + path: /{{clusterName}}/resources + server: {{nfsServer}} # change to your nfs server ip here. +--- + +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + namespace: {{clusterName}} + name: {{clusterName}}-org1-resources-pvc +spec: + accessModes: + - ReadWriteMany + resources: + requests: + storage: 10Mi + +--- + +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + namespace: {{clusterName}} + name: cli-org1 +spec: + replicas: 1 + strategy: {} + template: + metadata: + labels: + app: cli + spec: + containers: + - name: cli + image: hyperledger/fabric-tools:x86_64-1.1.0 + env: + - name: CORE_PEER_TLS_ENABLED + value: "true" + - name: CORE_PEER_TLS_CERT_FILE + value: /etc/hyperledger/fabric/tls/server.crt + - name: CORE_PEER_TLS_KEY_FILE + value: /etc/hyperledger/fabric/tls/server.key + - name: CORE_PEER_TLS_ROOTCERT_FILE + value: /etc/hyperledger/fabric/tls/ca.crt + - name: CORE_VM_ENDPOINT + value: unix:///host/var/run/docker.sock + - name: GOPATH + value: /opt/gopath + - name: CORE_LOGGING_LEVEL + value: DEBUG + - name: CORE_PEER_ID + value: cli + - name: CORE_PEER_ADDRESS + value: peer0-org1:7051 + - name: CORE_PEER_LOCALMSPID + value: Org1MSP + - name: CORE_PEER_MSPCONFIGPATH + value: /etc/hyperledger/fabric/msp + - name: ORDERER_CA + value: /etc/hyperledger/fabric/tls/tlsca.example.com-cert.pem + workingDir: /opt/gopath/src/github.com/hyperledger/fabric/peer + command: [ "/bin/bash", "-c", "--" ] + args: [ "while true; do sleep 30; done;" ] + volumeMounts: + - mountPath: /host/var/run/ + name: run + # when enable tls , should mount orderer tls ca + - mountPath: /etc/hyperledger/fabric/msp + name: certificate + subPath: users/Admin@org1.example.com/msp + - mountPath: /etc/hyperledger/fabric/tls + name: certificate + subPath: users/Admin@org1.example.com/tls + - mountPath: /opt/gopath/src/github.com/hyperledger/fabric/peer/resources/chaincodes + name: resources + subPath: chaincodes + - mountPath: /opt/gopath/src/github.com/hyperledger/fabric/peer/resources/channel-artifacts + name: resources + subPath: channel-artifacts + volumes: + - name: certificate + persistentVolumeClaim: + claimName: {{clusterName}}-org1-pvc + - name: resources + persistentVolumeClaim: + claimName: {{clusterName}}-org1-resources-pvc + - name: run + hostPath: + path: /var/run diff --git a/src/agent/k8s/templates/fabric-1.1/org1-pvc.tpl b/src/agent/k8s/templates/fabric-1.1/org1-pvc.tpl new file mode 100644 index 00000000..86ffc83a --- /dev/null +++ b/src/agent/k8s/templates/fabric-1.1/org1-pvc.tpl @@ -0,0 +1,31 @@ +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: {{clusterName}}-org1-pv +spec: + capacity: + storage: 500Mi + accessModes: + - ReadWriteMany + claimRef: + namespace: {{clusterName}} + name: {{clusterName}}-org1-pvc + nfs: + path: /{{clusterName}}/resources/crypto-config/peerOrganizations/org1.example.com + server: {{nfsServer}} #change to your nfs server ip here + +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + namespace: {{clusterName}} + name: {{clusterName}}-org1-pvc +spec: + accessModes: + - ReadWriteMany + resources: + requests: + storage: 10Mi + +--- diff --git a/src/agent/k8s/templates/fabric-1.1/org2-ca.tpl b/src/agent/k8s/templates/fabric-1.1/org2-ca.tpl new file mode 100644 index 00000000..e84bca3e --- /dev/null +++ b/src/agent/k8s/templates/fabric-1.1/org2-ca.tpl @@ -0,0 +1,65 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + namespace: {{clusterName}} + name: ca-org2 +spec: + replicas: 1 + strategy: {} + template: + metadata: + labels: + app: hyperledger + role: ca + org: org2 + name: ca + spec: + containers: + - name: ca + image: hyperledger/fabric-ca:x86_64-1.1.0 + env: + - name: FABRIC_CA_HOME + value: /etc/hyperledger/fabric-ca-server + - name: FABRIC_CA_SERVER_CA_NAME + value: ca + - name: FABRIC_CA_SERVER_TLS_ENABLED + value: "true" + - name: FABRIC_CA_SERVER_TLS_CERTFILE + value: /etc/hyperledger/fabric-ca-server-config/ca.org2.example.com-cert.pem + - name: FABRIC_CA_SERVER_TLS_KEYFILE + value: /etc/hyperledger/fabric-ca-server-config/33d617d5db2c05302f25b72f8c527d2a54b64931dc1452281c515f51e535aaa7_sk + ports: + - containerPort: 7054 + command: ["sh"] + args: ["-c", " fabric-ca-server start --ca.certfile /etc/hyperledger/fabric-ca-server-config/ca.org2.example.com-cert.pem --ca.keyfile /etc/hyperledger/fabric-ca-server-config/33d617d5db2c05302f25b72f8c527d2a54b64931dc1452281c515f51e535aaa7_sk -b admin:adminpw -d "] + volumeMounts: + - mountPath: /etc/hyperledger/fabric-ca-server-config + name: certificate + subPath: ca/ + - mountPath: /etc/hyperledger/fabric-ca-server + name: certificate + subPath: fabric-ca-server/ + volumes: + - name: certificate + persistentVolumeClaim: + claimName: {{clusterName}}-org2-pvc + +--- +apiVersion: v1 +kind: Service +metadata: + namespace: {{clusterName}} + name: ca-org2 +spec: + selector: + app: hyperledger + role: ca + org: org2 + name: ca + type: NodePort + ports: + - name: endpoint + protocol: TCP + port: 7054 + targetPort: 7054 + nodePort: {{nodePort}} diff --git a/src/agent/k8s/templates/fabric-1.1/org2-cli.tpl b/src/agent/k8s/templates/fabric-1.1/org2-cli.tpl new file mode 100644 index 00000000..85b26064 --- /dev/null +++ b/src/agent/k8s/templates/fabric-1.1/org2-cli.tpl @@ -0,0 +1,101 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: {{clusterName}}-org2-resources-pv +spec: + capacity: + storage: 500Mi + accessModes: + - ReadWriteMany + claimRef: + namespace: {{clusterName}} + name: {{clusterName}}-org2-resources-pvc + nfs: + path: /{{clusterName}}/resources + server: {{nfsServer}} # change to your nfs server ip here. +--- + +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + namespace: {{clusterName}} + name: {{clusterName}}-org2-resources-pvc +spec: + accessModes: + - ReadWriteMany + resources: + requests: + storage: 10Mi + +--- + +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + namespace: {{clusterName}} + name: cli-org2 +spec: + replicas: 1 + strategy: {} + template: + metadata: + labels: + app: cli + spec: + containers: + - name: cli + image: hyperledger/fabric-tools:x86_64-1.1.0 + env: + - name: CORE_PEER_TLS_ENABLED + value: "true" + - name: CORE_PEER_TLS_CERT_FILE + value: /etc/hyperledger/fabric/tls/server.crt + - name: CORE_PEER_TLS_KEY_FILE + value: /etc/hyperledger/fabric/tls/server.key + - name: CORE_PEER_TLS_ROOTCERT_FILE + value: /etc/hyperledger/fabric/tls/ca.crt + - name: CORE_VM_ENDPOINT + value: unix:///host/var/run/docker.sock + - name: GOPATH + value: /opt/gopath + - name: CORE_LOGGING_LEVEL + value: DEBUG + - name: CORE_PEER_ID + value: cli + - name: CORE_PEER_ADDRESS + value: peer0-org2:7051 + - name: CORE_PEER_LOCALMSPID + value: Org2MSP + - name: CORE_PEER_MSPCONFIGPATH + value: /etc/hyperledger/fabric/msp + - name: ORDERER_CA + value: /etc/hyperledger/fabric/tls/tlsca.example.com-cert.pem + workingDir: /opt/gopath/src/github.com/hyperledger/fabric/peer + command: [ "/bin/bash", "-c", "--" ] + args: [ "while true; do sleep 30; done;" ] + volumeMounts: + - mountPath: /host/var/run/ + name: run + # when enable tls , should mount orderer tls ca + - mountPath: /etc/hyperledger/fabric/msp + name: certificate + subPath: users/Admin@org2.example.com/msp + - mountPath: /etc/hyperledger/fabric/tls + name: certificate + subPath: users/Admin@org2.example.com/tls + - mountPath: /opt/gopath/src/github.com/hyperledger/fabric/peer/resources/chaincodes + name: resources + subPath: chaincodes + - mountPath: /opt/gopath/src/github.com/hyperledger/fabric/peer/resources/channel-artifacts + name: resources + subPath: channel-artifacts + volumes: + - name: certificate + persistentVolumeClaim: + claimName: {{clusterName}}-org2-pvc + - name: resources + persistentVolumeClaim: + claimName: {{clusterName}}-org2-resources-pvc + - name: run + hostPath: + path: /var/run diff --git a/src/agent/k8s/templates/fabric-1.1/org2-pvc.tpl b/src/agent/k8s/templates/fabric-1.1/org2-pvc.tpl new file mode 100644 index 00000000..aaeec8e2 --- /dev/null +++ b/src/agent/k8s/templates/fabric-1.1/org2-pvc.tpl @@ -0,0 +1,31 @@ +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: {{clusterName}}-org2-pv +spec: + capacity: + storage: 500Mi + accessModes: + - ReadWriteMany + claimRef: + namespace: {{clusterName}} + name: {{clusterName}}-org2-pvc + nfs: + path: /{{clusterName}}/resources/crypto-config/peerOrganizations/org2.example.com + server: {{nfsServer}} #change to your nfs server ip here + +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + namespace: {{clusterName}} + name: {{clusterName}}-org2-pvc +spec: + accessModes: + - ReadWriteMany + resources: + requests: + storage: 10Mi + +--- diff --git a/src/agent/k8s/templates/fabric-1.1/peer0.org1.tpl b/src/agent/k8s/templates/fabric-1.1/peer0.org1.tpl new file mode 100644 index 00000000..58d54c4c --- /dev/null +++ b/src/agent/k8s/templates/fabric-1.1/peer0.org1.tpl @@ -0,0 +1,132 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + namespace: {{clusterName}} + name: peer0-org1 +spec: + replicas: 1 + strategy: {} + template: + metadata: + creationTimestamp: null + labels: + app: hyperledger + role: peer + peer-id: peer0 + org: org1 + spec: + containers: + - name: couchdb + image: hyperledger/fabric-couchdb:0.4.8 + ports: + - containerPort: 5984 + - name: peer0-org1 + image: hyperledger/fabric-peer:x86_64-1.1.0 + env: + - name: CORE_PEER_ADDRESSAUTODETECT + value: "true" + - name: CORE_LEDGER_STATE_STATEDATABASE + value: "CouchDB" + - name: CORE_LEDGER_STATE_COUCHDBCONFIG_COUCHDBADDRESS + value: "localhost:5984" + - name: CORE_VM_ENDPOINT + value: "unix:///host/var/run/docker.sock" + - name: CORE_VM_DOCKER_HOSTCONFIG_NETWORKMODE + value: "bridge" + #- name: CORE_VM_DOCKER_HOSTCONFIG_DNS + # value: "10.100.200.10" + - name: CORE_LOGGING_LEVEL + value: "DEBUG" + - name: CORE_PEER_TLS_CERT_FILE + value: "/etc/hyperledger/fabric/tls/server.crt" + - name: CORE_PEER_TLS_KEY_FILE + value: "/etc/hyperledger/fabric/tls/server.key" + - name: CORE_PEER_TLS_ROOTCERT_FILE + value: "/etc/hyperledger/fabric/tls/ca.crt" + - name: CORE_LOGGING_LEVEL + value: "DEBUG" + - name: CORE_PEER_TLS_ENABLED + value: "true" + - name: CORE_PEER_GOSSIP_USELEADERELECTION + value: "true" + - name: CORE_PEER_GOSSIP_ORGLEADER + value: "false" + - name: CORE_PEER_PROFILE_ENABLED + value: "false" + - name: CORE_PEER_ID + value: peer0-org1 + - name: CORE_PEER_ADDRESS + value: peer0-org1:7051 + # - name: CORE_PEER_CHAINCODELISTENADDRESS + # value: peer0-org1:7052 + - name: CORE_PEER_LOCALMSPID + value: Org1MSP + - name: CORE_PEER_GOSSIP_EXTERNALENDPOINT + value: peer0-org1:7051 + - name: CORE_CHAINCODE_PEERADDRESS + value: peer0-org1:7051 + - name: CORE_CHAINCODE_STARTUPTIMEOUT + value: "30s" + - name: CORE_CHAINCODE_LOGGING_LEVEL + value: "DEBUG" + workingDir: /opt/gopath/src/github.com/hyperledger/fabric/peer + ports: + - containerPort: 7051 + - containerPort: 7052 + - containerPort: 7053 + command: ["/bin/bash", "-c", "--"] + args: ["sleep 5; peer node start"] + volumeMounts: + - mountPath: /etc/hyperledger/fabric/msp + name: certificate + subPath: peers/peer0.org1.example.com/msp + - mountPath: /etc/hyperledger/fabric/tls + name: certificate + #subPath: crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ + subPath: peers/peer0.org1.example.com/tls + - mountPath: /var/hyperledger/production + name: certificate + subPath: peers/peer0.org1.example.com/production + - mountPath: /host/var/run + name: run + volumes: + - name: certificate + persistentVolumeClaim: + claimName: {{clusterName}}-org1-pvc + - name: run + hostPath: + path: /var/run + +--- +apiVersion: v1 +kind: Service +metadata: + namespace: {{clusterName}} + name: peer0-org1 +spec: + selector: + app: hyperledger + role: peer + peer-id: peer0 + org: org1 + type: NodePort + ports: + - name: externale-listen-endpoint + protocol: TCP + port: 7051 + targetPort: 7051 + nodePort: {{externalPort}} + + - name: chaincode-listen + protocol: TCP + port: 7052 + targetPort: 7052 + nodePort: {{chaincodePort}} + + - name: listen + protocol: TCP + port: 7053 + targetPort: 7053 + nodePort: {{nodePort}} + +--- diff --git a/src/agent/k8s/templates/fabric-1.1/peer0.org2.tpl b/src/agent/k8s/templates/fabric-1.1/peer0.org2.tpl new file mode 100644 index 00000000..ae5bd568 --- /dev/null +++ b/src/agent/k8s/templates/fabric-1.1/peer0.org2.tpl @@ -0,0 +1,135 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + namespace: {{clusterName}} + name: peer0-org2 +spec: + replicas: 1 + strategy: {} + template: + metadata: + creationTimestamp: null + labels: + app: hyperledger + role: peer + peer-id: peer0 + org: org2 + spec: + containers: + - name: couchdb + image: hyperledger/fabric-couchdb:0.4.8 + ports: + - containerPort: 5984 + - name: peer0-org2 + image: hyperledger/fabric-peer:x86_64-1.1.0 + env: + - name: CORE_PEER_ADDRESSAUTODETECT + value: "true" + - name: CORE_LEDGER_STATE_STATEDATABASE + value: "CouchDB" + - name: CORE_LEDGER_STATE_COUCHDBCONFIG_COUCHDBADDRESS + value: "localhost:5984" + - name: CORE_VM_ENDPOINT + value: "unix:///host/var/run/docker.sock" + - name: CORE_VM_DOCKER_HOSTCONFIG_NETWORKMODE + value: "bridge" + #- name: CORE_VM_DOCKER_HOSTCONFIG_DNS + # value: "10.100.200.10" + - name: CORE_LOGGING_LEVEL + value: "DEBUG" + - name: CORE_PEER_TLS_CERT_FILE + value: "/etc/hyperledger/fabric/tls/server.crt" + - name: CORE_PEER_TLS_KEY_FILE + value: "/etc/hyperledger/fabric/tls/server.key" + - name: CORE_PEER_TLS_ROOTCERT_FILE + value: "/etc/hyperledger/fabric/tls/ca.crt" + - name: CORE_LOGGING_LEVEL + value: "DEBUG" + - name: CORE_PEER_TLS_ENABLED + value: "true" + - name: CORE_PEER_GOSSIP_USELEADERELECTION + value: "true" + - name: CORE_PEER_GOSSIP_ORGLEADER + value: "false" + - name: CORE_PEER_PROFILE_ENABLED + value: "false" + - name: CORE_PEER_ID + value: peer0-org2 + - name: CORE_PEER_ADDRESS + value: peer0-org2:7051 + # - name: CORE_PEER_CHAINCODELISTENADDRESS + # value: peer0-org2:7052 + - name: CORE_PEER_LOCALMSPID + value: Org2MSP + - name: CORE_PEER_GOSSIP_EXTERNALENDPOINT + value: peer0-org2:7051 + - name: CORE_CHAINCODE_PEERADDRESS + value: peer0-org2:7051 + - name: CORE_CHAINCODE_STARTUPTIMEOUT + value: "30s" + - name: CORE_CHAINCODE_LOGGING_LEVEL + value: "DEBUG" + workingDir: /opt/gopath/src/github.com/hyperledger/fabric/peer + ports: + - containerPort: 7051 + - containerPort: 7052 + - containerPort: 7053 + command: ["/bin/bash", "-c", "--"] + args: ["sleep 5; peer node start"] + volumeMounts: + #- mountPath: /opt/gopath/src/github.com/hyperledger/fabric/peer/channel-artifacts + # name: certificate + # subPath: channel-artifacts + - mountPath: /etc/hyperledger/fabric/msp + name: certificate + subPath: peers/peer0.org2.example.com/msp + - mountPath: /etc/hyperledger/fabric/tls + name: certificate + #subPath: crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ + subPath: peers/peer0.org2.example.com/tls + - mountPath: /var/hyperledger/production + name: certificate + subPath: peers/peer0.org2.example.com/production + - mountPath: /host/var/run + name: run + volumes: + - name: certificate + persistentVolumeClaim: + claimName: {{clusterName}}-org2-pvc + - name: run + hostPath: + path: /var/run + +--- +apiVersion: v1 +kind: Service +metadata: + namespace: {{clusterName}} + name: peer0-org2 +spec: + selector: + app: hyperledger + role: peer + peer-id: peer0 + org: org2 + type: NodePort + ports: + - name: externale-listen-endpoint + protocol: TCP + port: 7051 + targetPort: 7051 + nodePort: {{externalPort}} + + - name: chaincode-listen + protocol: TCP + port: 7052 + targetPort: 7052 + nodePort: {{chaincodePort}} + + - name: listen + protocol: TCP + port: 7053 + targetPort: 7053 + nodePort: {{nodePort}} + +--- diff --git a/src/agent/k8s/templates/fabric-1.1/peer1.org1.tpl b/src/agent/k8s/templates/fabric-1.1/peer1.org1.tpl new file mode 100644 index 00000000..e8afe672 --- /dev/null +++ b/src/agent/k8s/templates/fabric-1.1/peer1.org1.tpl @@ -0,0 +1,136 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + namespace: {{clusterName}} + name: peer1-org1 +spec: + replicas: 1 + strategy: {} + template: + metadata: + creationTimestamp: null + labels: + app: hyperledger + role: peer + peer-id: peer1 + org: org1 + spec: + containers: + - name: couchdb + image: hyperledger/fabric-couchdb:0.4.8 + ports: + - containerPort: 5984 + - name: peer1-org1 + image: hyperledger/fabric-peer:x86_64-1.1.0 + env: + - name: CORE_PEER_ADDRESSAUTODETECT + value: "true" + - name: CORE_LEDGER_STATE_STATEDATABASE + value: "CouchDB" + - name: CORE_LEDGER_STATE_COUCHDBCONFIG_COUCHDBADDRESS + value: "localhost:5984" + - name: CORE_VM_ENDPOINT + value: "unix:///host/var/run/docker.sock" + - name: CORE_VM_DOCKER_HOSTCONFIG_NETWORKMODE + value: "bridge" + #- name: CORE_VM_DOCKER_HOSTCONFIG_DNS + # value: "10.100.200.10" + - name: CORE_LOGGING_LEVEL + value: "DEBUG" + - name: CORE_PEER_TLS_CERT_FILE + value: "/etc/hyperledger/fabric/tls/server.crt" + - name: CORE_PEER_TLS_KEY_FILE + value: "/etc/hyperledger/fabric/tls/server.key" + - name: CORE_PEER_TLS_ROOTCERT_FILE + value: "/etc/hyperledger/fabric/tls/ca.crt" + - name: CORE_LOGGING_LEVEL + value: "DEBUG" + - name: CORE_PEER_TLS_ENABLED + value: "true" + - name: CORE_PEER_GOSSIP_USELEADERELECTION + value: "true" + - name: CORE_PEER_GOSSIP_ORGLEADER + value: "false" + - name: CORE_PEER_PROFILE_ENABLED + value: "false" + - name: CORE_PEER_ID + value: peer1-org1 + - name: CORE_PEER_ADDRESS + value: peer1-org1:7051 + # - name: CORE_PEER_CHAINCODELISTENADDRESS + # value: peer1-org1:7052 + - name: CORE_PEER_LOCALMSPID + value: Org1MSP + - name: CORE_PEER_GOSSIP_EXTERNALENDPOINT + value: peer1-org1:7051 + - name: CORE_CHAINCODE_PEERADDRESS + value: peer1-org1:7051 + - name: CORE_CHAINCODE_STARTUPTIMEOUT + value: "30s" + - name: CORE_CHAINCODE_LOGGING_LEVEL + value: "DEBUG" + workingDir: /opt/gopath/src/github.com/hyperledger/fabric/peer + ports: + - containerPort: 7051 + - containerPort: 7052 + - containerPort: 7053 + command: ["/bin/bash", "-c", "--"] + args: ["sleep 5; peer node start"] + volumeMounts: + #- mountPath: /opt/gopath/src/github.com/hyperledger/fabric/peer/channel-artifacts + # name: certificate + # subPath: channel-artifacts + - mountPath: /etc/hyperledger/fabric/msp + name: certificate + #subPath: crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp + subPath: peers/peer1.org1.example.com/msp + - mountPath: /etc/hyperledger/fabric/tls + name: certificate + #subPath: crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ + subPath: peers/peer1.org1.example.com/tls + - mountPath: /var/hyperledger/production + name: certificate + subPath: peers/peer1.org1.example.com/production + - mountPath: /host/var/run + name: run + volumes: + - name: certificate + persistentVolumeClaim: + claimName: {{clusterName}}-org1-pvc + - name: run + hostPath: + path: /var/run + +--- +apiVersion: v1 +kind: Service +metadata: + namespace: {{clusterName}} + name: peer1-org1 +spec: + selector: + app: hyperledger + role: peer + peer-id: peer1 + org: org1 + type: NodePort + ports: + - name: externale-listen-endpoint + protocol: TCP + port: 7051 + targetPort: 7051 + nodePort: {{externalPort}} + + - name: chaincode-listen + protocol: TCP + port: 7052 + targetPort: 7052 + nodePort: {{chaincodePort}} + + - name: listen + protocol: TCP + port: 7053 + targetPort: 7053 + nodePort: {{nodePort}} + +--- diff --git a/src/agent/k8s/templates/fabric-1.1/peer1.org2.tpl b/src/agent/k8s/templates/fabric-1.1/peer1.org2.tpl new file mode 100644 index 00000000..4a10105d --- /dev/null +++ b/src/agent/k8s/templates/fabric-1.1/peer1.org2.tpl @@ -0,0 +1,136 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + namespace: {{clusterName}} + name: peer1-org2 +spec: + replicas: 1 + strategy: {} + template: + metadata: + creationTimestamp: null + labels: + app: hyperledger + role: peer + peer-id: peer1 + org: org2 + spec: + containers: + - name: couchdb + image: hyperledger/fabric-couchdb:0.4.8 + ports: + - containerPort: 5984 + - name: peer1-org2 + image: hyperledger/fabric-peer:x86_64-1.1.0 + env: + - name: CORE_PEER_ADDRESSAUTODETECT + value: "true" + - name: CORE_LEDGER_STATE_STATEDATABASE + value: "CouchDB" + - name: CORE_LEDGER_STATE_COUCHDBCONFIG_COUCHDBADDRESS + value: "localhost:5984" + - name: CORE_VM_ENDPOINT + value: "unix:///host/var/run/docker.sock" + - name: CORE_VM_DOCKER_HOSTCONFIG_NETWORKMODE + value: "bridge" + #- name: CORE_VM_DOCKER_HOSTCONFIG_DNS + # value: "10.100.200.10" + - name: CORE_LOGGING_LEVEL + value: "DEBUG" + - name: CORE_PEER_TLS_CERT_FILE + value: "/etc/hyperledger/fabric/tls/server.crt" + - name: CORE_PEER_TLS_KEY_FILE + value: "/etc/hyperledger/fabric/tls/server.key" + - name: CORE_PEER_TLS_ROOTCERT_FILE + value: "/etc/hyperledger/fabric/tls/ca.crt" + - name: CORE_LOGGING_LEVEL + value: "DEBUG" + - name: CORE_PEER_TLS_ENABLED + value: "true" + - name: CORE_PEER_GOSSIP_USELEADERELECTION + value: "true" + - name: CORE_PEER_GOSSIP_ORGLEADER + value: "false" + - name: CORE_PEER_PROFILE_ENABLED + value: "false" + - name: CORE_PEER_ID + value: peer1-org2 + - name: CORE_PEER_ADDRESS + value: peer1-org2:7051 + # - name: CORE_PEER_CHAINCODELISTENADDRESS + # value: peer1-org2:7052 + - name: CORE_PEER_LOCALMSPID + value: Org2MSP + - name: CORE_PEER_GOSSIP_EXTERNALENDPOINT + value: peer1-org2:7051 + - name: CORE_CHAINCODE_PEERADDRESS + value: peer1-org2:7051 + - name: CORE_CHAINCODE_STARTUPTIMEOUT + value: "30s" + - name: CORE_CHAINCODE_LOGGING_LEVEL + value: "DEBUG" + workingDir: /opt/gopath/src/github.com/hyperledger/fabric/peer + ports: + - containerPort: 7051 + - containerPort: 7052 + - containerPort: 7053 + command: ["/bin/bash", "-c", "--"] + args: ["sleep 5; peer node start"] + volumeMounts: + #- mountPath: /opt/gopath/src/github.com/hyperledger/fabric/peer/channel-artifacts + # name: certificate + # subPath: channel-artifacts + - mountPath: /etc/hyperledger/fabric/msp + name: certificate + #subPath: crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp + subPath: peers/peer1.org2.example.com/msp + - mountPath: /etc/hyperledger/fabric/tls + name: certificate + #subPath: crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ + subPath: peers/peer1.org2.example.com/tls + - mountPath: /var/hyperledger/production + name: certificate + subPath: peers/peer1.org2.example.com/production + - mountPath: /host/var/run + name: run + volumes: + - name: certificate + persistentVolumeClaim: + claimName: {{clusterName}}-org2-pvc + - name: run + hostPath: + path: /var/run + +--- +apiVersion: v1 +kind: Service +metadata: + namespace: {{clusterName}} + name: peer1-org2 +spec: + selector: + app: hyperledger + role: peer + peer-id: peer1 + org: org2 + type: NodePort + ports: + - name: externale-listen-endpoint + protocol: TCP + port: 7051 + targetPort: 7051 + nodePort: {{externalPort}} + + - name: chaincode-listen + protocol: TCP + port: 7052 + targetPort: 7052 + nodePort: {{chaincodePort}} + + - name: listen + protocol: TCP + port: 7053 + targetPort: 7053 + nodePort: {{nodePort}} + +---