├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── cosmic_ray_config.yaml ├── docs ├── Makefile ├── conf.py ├── index.rst ├── readme.rst └── source │ ├── modules.rst │ ├── nephos.composer.rst │ ├── nephos.fabric.rst │ ├── nephos.helpers.rst │ └── nephos.rst ├── examples ├── ca-nephos-local.crt ├── ca-nephos-local.key ├── ca-nephos-local.pem ├── ca-tls-nephos-local.crt ├── ca-tls-nephos-local.key ├── ca-tls-nephos-local.pem ├── certManagerCI_production.yaml ├── certManagerCI_staging.yaml ├── dev-tls │ ├── config │ │ ├── configtx.yaml │ │ └── crypto-config.yaml │ ├── crypto │ │ └── crypto-config │ │ │ ├── ordererOrganizations │ │ │ └── alpha.svc.cluster.local │ │ │ │ ├── ca │ │ │ │ ├── 9e8c4c0a07a9d6c7fa9f1047cd3d237e63795bfa0ddf13d8a62b5370bc6a8cbc_sk │ │ │ │ └── ca.alpha.svc.cluster.local-cert.pem │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@alpha.svc.cluster.local-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.alpha.svc.cluster.local-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.alpha.svc.cluster.local-cert.pem │ │ │ │ ├── orderers │ │ │ │ └── ord1-hlf-ord.alpha.svc.cluster.local │ │ │ │ │ ├── msp │ │ │ │ │ ├── admincerts │ │ │ │ │ │ └── Admin@alpha.svc.cluster.local-cert.pem │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.alpha.svc.cluster.local-cert.pem │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── ffb64e29573682f118fdf41ca4184982ce9b7a740f29bfdff0184d67510c2c5a_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── ord1-hlf-ord.alpha.svc.cluster.local-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.alpha.svc.cluster.local-cert.pem │ │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key │ │ │ │ ├── tlsca │ │ │ │ ├── f6cfeb6a39ac7efe702b3ae6b23e9af91791c12f3998ea3e5d5a81699d696d14_sk │ │ │ │ └── tlsca.alpha.svc.cluster.local-cert.pem │ │ │ │ └── users │ │ │ │ └── Admin@alpha.svc.cluster.local │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@alpha.svc.cluster.local-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.alpha.svc.cluster.local-cert.pem │ │ │ │ ├── keystore │ │ │ │ │ └── ba11f3aee63fb8cdc827605561051a856d00ce24e735101a17ae0a3e17181d4e_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── Admin@alpha.svc.cluster.local-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.alpha.svc.cluster.local-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── client.crt │ │ │ │ └── client.key │ │ │ └── peerOrganizations │ │ │ └── beta.svc.cluster.local │ │ │ ├── ca │ │ │ ├── 8005aa0c5f808abd4ed99dbe741d92e2dddd585a55609f41c43944261912aed2_sk │ │ │ └── ca.beta.svc.cluster.local-cert.pem │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@beta.svc.cluster.local-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.beta.svc.cluster.local-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.beta.svc.cluster.local-cert.pem │ │ │ ├── peers │ │ │ └── peer1-hlf-peer.beta.svc.cluster.local │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@beta.svc.cluster.local-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.beta.svc.cluster.local-cert.pem │ │ │ │ ├── keystore │ │ │ │ │ └── 351f0dda5fe4ea25b675d7251a606aabd20d8248c4da1cd7d7e6e4e8691f027f_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── peer1-hlf-peer.beta.svc.cluster.local-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.beta.svc.cluster.local-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ │ ├── tlsca │ │ │ ├── 0c1d8817f7799aa576e1294f6aa8fe03973d4d4a962f2bc10a044dc2a217f8fd_sk │ │ │ └── tlsca.beta.svc.cluster.local-cert.pem │ │ │ └── users │ │ │ └── Admin@beta.svc.cluster.local │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@beta.svc.cluster.local-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.beta.svc.cluster.local-cert.pem │ │ │ ├── keystore │ │ │ │ └── 8bddfb366cd93701e0e5072e4693a6c908658cf5dcbbcd2bef93d81b8ac03f09_sk │ │ │ ├── signcerts │ │ │ │ └── Admin@beta.svc.cluster.local-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.beta.svc.cluster.local-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── client.crt │ │ │ └── client.key │ ├── helm_values │ │ ├── AlphaMSP │ │ │ └── hlf-ord │ │ │ │ └── ord1.yaml │ │ └── BetaMSP │ │ │ ├── hlf-couchdb │ │ │ └── cdb-peer1.yaml │ │ │ └── hlf-peer │ │ │ └── peer1.yaml │ └── nephos_config.yaml ├── dev │ ├── config │ │ ├── configtx.yaml │ │ ├── crypto-config.yaml │ │ └── fabric-ca-client-config.yaml │ ├── crypto │ │ └── crypto-config │ │ │ ├── ordererOrganizations │ │ │ └── alpha.svc.cluster.local │ │ │ │ ├── ca │ │ │ │ ├── 9e8c4c0a07a9d6c7fa9f1047cd3d237e63795bfa0ddf13d8a62b5370bc6a8cbc_sk │ │ │ │ └── ca.alpha.svc.cluster.local-cert.pem │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@alpha.svc.cluster.local-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.alpha.svc.cluster.local-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.alpha.svc.cluster.local-cert.pem │ │ │ │ ├── orderers │ │ │ │ └── ord1-hlf-ord.alpha.svc.cluster.local │ │ │ │ │ ├── msp │ │ │ │ │ ├── admincerts │ │ │ │ │ │ └── Admin@alpha.svc.cluster.local-cert.pem │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.alpha.svc.cluster.local-cert.pem │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── ffb64e29573682f118fdf41ca4184982ce9b7a740f29bfdff0184d67510c2c5a_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── ord1-hlf-ord.alpha.svc.cluster.local-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.alpha.svc.cluster.local-cert.pem │ │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key │ │ │ │ ├── tlsca │ │ │ │ ├── f6cfeb6a39ac7efe702b3ae6b23e9af91791c12f3998ea3e5d5a81699d696d14_sk │ │ │ │ └── tlsca.alpha.svc.cluster.local-cert.pem │ │ │ │ └── users │ │ │ │ └── Admin@alpha.svc.cluster.local │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@alpha.svc.cluster.local-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.alpha.svc.cluster.local-cert.pem │ │ │ │ ├── keystore │ │ │ │ │ └── ba11f3aee63fb8cdc827605561051a856d00ce24e735101a17ae0a3e17181d4e_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── Admin@alpha.svc.cluster.local-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.alpha.svc.cluster.local-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── client.crt │ │ │ │ └── client.key │ │ │ └── peerOrganizations │ │ │ └── beta.svc.cluster.local │ │ │ ├── ca │ │ │ ├── 8005aa0c5f808abd4ed99dbe741d92e2dddd585a55609f41c43944261912aed2_sk │ │ │ └── ca.beta.svc.cluster.local-cert.pem │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@beta.svc.cluster.local-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.beta.svc.cluster.local-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.beta.svc.cluster.local-cert.pem │ │ │ ├── peers │ │ │ └── peer1-hlf-peer.beta.svc.cluster.local │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@beta.svc.cluster.local-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.beta.svc.cluster.local-cert.pem │ │ │ │ ├── keystore │ │ │ │ │ └── 351f0dda5fe4ea25b675d7251a606aabd20d8248c4da1cd7d7e6e4e8691f027f_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── peer1-hlf-peer.beta.svc.cluster.local-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.beta.svc.cluster.local-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ │ ├── tlsca │ │ │ ├── 0c1d8817f7799aa576e1294f6aa8fe03973d4d4a962f2bc10a044dc2a217f8fd_sk │ │ │ └── tlsca.beta.svc.cluster.local-cert.pem │ │ │ └── users │ │ │ └── Admin@beta.svc.cluster.local │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@beta.svc.cluster.local-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.beta.svc.cluster.local-cert.pem │ │ │ ├── keystore │ │ │ │ └── 8bddfb366cd93701e0e5072e4693a6c908658cf5dcbbcd2bef93d81b8ac03f09_sk │ │ │ ├── signcerts │ │ │ │ └── Admin@beta.svc.cluster.local-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.beta.svc.cluster.local-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── client.crt │ │ │ └── client.key │ ├── helm_values │ │ ├── AlphaMSP │ │ │ └── hlf-ord │ │ │ │ └── ord1.yaml │ │ ├── BetaMSP │ │ │ ├── hlf-couchdb │ │ │ │ └── cdb-peer1.yaml │ │ │ └── hlf-peer │ │ │ │ └── peer1.yaml │ │ ├── hlf-couchdb │ │ │ └── cdb-peer1.yaml │ │ ├── hlf-ord │ │ │ └── ord1.yaml │ │ └── hlf-peer │ │ │ └── peer1.yaml │ └── nephos_config.yaml ├── prod │ ├── config │ │ └── configtx.yaml │ ├── helm_values │ │ ├── AlphaMSP │ │ │ ├── hlf-ord │ │ │ │ ├── alpha-ord1.yaml │ │ │ │ └── alpha-ord2.yaml │ │ │ └── kafka │ │ │ │ └── kafka-hlf.yaml │ │ ├── BetaMSP │ │ │ ├── hlf-couchdb │ │ │ │ ├── cdb-beta-peer1.yaml │ │ │ │ └── cdb-beta-peer2.yaml │ │ │ └── hlf-peer │ │ │ │ ├── beta-peer1.yaml │ │ │ │ └── beta-peer2.yaml │ │ ├── GammaMSP │ │ │ ├── hlf-couchdb │ │ │ │ ├── cdb-gamma-peer1.yaml │ │ │ │ └── cdb-gamma-peer2.yaml │ │ │ └── hlf-peer │ │ │ │ ├── gamma-peer1.yaml │ │ │ │ └── gamma-peer2.yaml │ │ ├── hl-composer │ │ │ └── hlc.yaml │ │ ├── hlf-ca │ │ │ └── ca.yaml │ │ └── postgres-ca │ │ │ └── ca-pg.yaml │ └── nephos_config.yaml ├── qa-tls │ ├── config │ │ └── configtx.yaml │ ├── helm_values │ │ ├── AlphaMSP │ │ │ └── hlf-ord │ │ │ │ └── ord1.yaml │ │ ├── BetaMSP │ │ │ ├── hlf-couchdb │ │ │ │ └── cdb-beta-peer1.yaml │ │ │ └── hlf-peer │ │ │ │ └── beta-peer1.yaml │ │ ├── hl-composer │ │ │ └── hlc.yaml │ │ ├── hlf-ca │ │ │ ├── ca-tls.yaml │ │ │ └── ca.yaml │ │ └── postgres-ca │ │ │ ├── ca-pg.yaml │ │ │ └── ca-tls-pg.yaml │ └── nephos_config.yaml └── qa │ ├── config │ └── configtx.yaml │ ├── helm_values │ ├── AlphaMSP │ │ └── hlf-ord │ │ │ └── ord1.yaml │ ├── BetaMSP │ │ ├── hlf-couchdb │ │ │ └── cdb-beta-peer1.yaml │ │ └── hlf-peer │ │ │ └── beta-peer1.yaml │ ├── hl-composer │ │ └── hlc.yaml │ ├── hlf-ca │ │ └── ca.yaml │ └── postgres-ca │ │ └── ca-pg.yaml │ └── nephos_config.yaml ├── integration ├── test_dev.py └── test_qa.py ├── nephos ├── __init__.py ├── composer │ ├── __init__.py │ ├── connection_template.py │ ├── install.py │ └── upgrade.py ├── deploy.py ├── extras │ ├── Lets_Encrypt_Authority_X3.pem │ └── helm-rbac.yaml ├── fabric │ ├── __init__.py │ ├── ca.py │ ├── crypto.py │ ├── ord.py │ ├── peer.py │ ├── settings.py │ └── utils.py ├── helpers │ ├── __init__.py │ ├── executer.py │ ├── helm.py │ ├── k8s.py │ └── misc.py └── runners.py ├── requirements.txt ├── setup.py ├── sonar-project.properties ├── tests ├── composer │ ├── test_connection_template.py │ ├── test_install.py │ └── test_upgrade.py ├── fabric │ ├── test_ca.py │ ├── test_crypto.py │ ├── test_ord.py │ ├── test_peer.py │ ├── test_settings.py │ └── test_utils.py ├── helpers │ ├── test_executer.py │ ├── test_helm.py │ ├── test_k8s.py │ └── test_misc.py ├── test_deploy.py └── test_runners.py └── travis_success.sh /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = ./setup.py,venv/*,tests/*,integration/* 3 | 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/README.md -------------------------------------------------------------------------------- /cosmic_ray_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/cosmic_ray_config.yaml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../README.md -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /docs/source/nephos.composer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/docs/source/nephos.composer.rst -------------------------------------------------------------------------------- /docs/source/nephos.fabric.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/docs/source/nephos.fabric.rst -------------------------------------------------------------------------------- /docs/source/nephos.helpers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/docs/source/nephos.helpers.rst -------------------------------------------------------------------------------- /docs/source/nephos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/docs/source/nephos.rst -------------------------------------------------------------------------------- /examples/ca-nephos-local.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/ca-nephos-local.crt -------------------------------------------------------------------------------- /examples/ca-nephos-local.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/ca-nephos-local.key -------------------------------------------------------------------------------- /examples/ca-nephos-local.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/ca-nephos-local.pem -------------------------------------------------------------------------------- /examples/ca-tls-nephos-local.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/ca-tls-nephos-local.crt -------------------------------------------------------------------------------- /examples/ca-tls-nephos-local.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/ca-tls-nephos-local.key -------------------------------------------------------------------------------- /examples/ca-tls-nephos-local.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/ca-tls-nephos-local.pem -------------------------------------------------------------------------------- /examples/certManagerCI_production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/certManagerCI_production.yaml -------------------------------------------------------------------------------- /examples/certManagerCI_staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/certManagerCI_staging.yaml -------------------------------------------------------------------------------- /examples/dev-tls/config/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/config/configtx.yaml -------------------------------------------------------------------------------- /examples/dev-tls/config/crypto-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/config/crypto-config.yaml -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/ca/9e8c4c0a07a9d6c7fa9f1047cd3d237e63795bfa0ddf13d8a62b5370bc6a8cbc_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/ca/9e8c4c0a07a9d6c7fa9f1047cd3d237e63795bfa0ddf13d8a62b5370bc6a8cbc_sk -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/ca/ca.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/ca/ca.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/msp/admincerts/Admin@alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/msp/admincerts/Admin@alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/msp/cacerts/ca.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/msp/cacerts/ca.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/msp/tlscacerts/tlsca.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/msp/tlscacerts/tlsca.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/admincerts/Admin@alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/admincerts/Admin@alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/cacerts/ca.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/cacerts/ca.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/keystore/ffb64e29573682f118fdf41ca4184982ce9b7a740f29bfdff0184d67510c2c5a_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/keystore/ffb64e29573682f118fdf41ca4184982ce9b7a740f29bfdff0184d67510c2c5a_sk -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/signcerts/ord1-hlf-ord.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/signcerts/ord1-hlf-ord.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/tlscacerts/tlsca.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/tlscacerts/tlsca.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/tls/ca.crt -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/tls/server.crt -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/tls/server.key -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/tlsca/f6cfeb6a39ac7efe702b3ae6b23e9af91791c12f3998ea3e5d5a81699d696d14_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/tlsca/f6cfeb6a39ac7efe702b3ae6b23e9af91791c12f3998ea3e5d5a81699d696d14_sk -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/tlsca/tlsca.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/tlsca/tlsca.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/admincerts/Admin@alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/admincerts/Admin@alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/cacerts/ca.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/cacerts/ca.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/keystore/ba11f3aee63fb8cdc827605561051a856d00ce24e735101a17ae0a3e17181d4e_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/keystore/ba11f3aee63fb8cdc827605561051a856d00ce24e735101a17ae0a3e17181d4e_sk -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/signcerts/Admin@alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/signcerts/Admin@alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/tlscacerts/tlsca.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/tlscacerts/tlsca.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/tls/ca.crt -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/tls/client.crt -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/tls/client.key -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/ca/8005aa0c5f808abd4ed99dbe741d92e2dddd585a55609f41c43944261912aed2_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/ca/8005aa0c5f808abd4ed99dbe741d92e2dddd585a55609f41c43944261912aed2_sk -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/ca/ca.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/ca/ca.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/msp/admincerts/Admin@beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/msp/admincerts/Admin@beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/msp/cacerts/ca.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/msp/cacerts/ca.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/msp/tlscacerts/tlsca.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/msp/tlscacerts/tlsca.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/admincerts/Admin@beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/admincerts/Admin@beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/cacerts/ca.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/cacerts/ca.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/keystore/351f0dda5fe4ea25b675d7251a606aabd20d8248c4da1cd7d7e6e4e8691f027f_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/keystore/351f0dda5fe4ea25b675d7251a606aabd20d8248c4da1cd7d7e6e4e8691f027f_sk -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/signcerts/peer1-hlf-peer.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/signcerts/peer1-hlf-peer.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/tlscacerts/tlsca.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/tlscacerts/tlsca.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/tls/ca.crt -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/tls/server.crt -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/tls/server.key -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/tlsca/0c1d8817f7799aa576e1294f6aa8fe03973d4d4a962f2bc10a044dc2a217f8fd_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/tlsca/0c1d8817f7799aa576e1294f6aa8fe03973d4d4a962f2bc10a044dc2a217f8fd_sk -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/tlsca/tlsca.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/tlsca/tlsca.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/admincerts/Admin@beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/admincerts/Admin@beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/cacerts/ca.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/cacerts/ca.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/keystore/8bddfb366cd93701e0e5072e4693a6c908658cf5dcbbcd2bef93d81b8ac03f09_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/keystore/8bddfb366cd93701e0e5072e4693a6c908658cf5dcbbcd2bef93d81b8ac03f09_sk -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/signcerts/Admin@beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/signcerts/Admin@beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/tlscacerts/tlsca.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/tlscacerts/tlsca.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/tls/ca.crt -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/tls/client.crt -------------------------------------------------------------------------------- /examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/tls/client.key -------------------------------------------------------------------------------- /examples/dev-tls/helm_values/AlphaMSP/hlf-ord/ord1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/helm_values/AlphaMSP/hlf-ord/ord1.yaml -------------------------------------------------------------------------------- /examples/dev-tls/helm_values/BetaMSP/hlf-couchdb/cdb-peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/helm_values/BetaMSP/hlf-couchdb/cdb-peer1.yaml -------------------------------------------------------------------------------- /examples/dev-tls/helm_values/BetaMSP/hlf-peer/peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/helm_values/BetaMSP/hlf-peer/peer1.yaml -------------------------------------------------------------------------------- /examples/dev-tls/nephos_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev-tls/nephos_config.yaml -------------------------------------------------------------------------------- /examples/dev/config/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/config/configtx.yaml -------------------------------------------------------------------------------- /examples/dev/config/crypto-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/config/crypto-config.yaml -------------------------------------------------------------------------------- /examples/dev/config/fabric-ca-client-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/config/fabric-ca-client-config.yaml -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/ca/9e8c4c0a07a9d6c7fa9f1047cd3d237e63795bfa0ddf13d8a62b5370bc6a8cbc_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/ca/9e8c4c0a07a9d6c7fa9f1047cd3d237e63795bfa0ddf13d8a62b5370bc6a8cbc_sk -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/ca/ca.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/ca/ca.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/msp/admincerts/Admin@alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/msp/admincerts/Admin@alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/msp/cacerts/ca.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/msp/cacerts/ca.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/msp/tlscacerts/tlsca.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/msp/tlscacerts/tlsca.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/admincerts/Admin@alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/admincerts/Admin@alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/cacerts/ca.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/cacerts/ca.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/keystore/ffb64e29573682f118fdf41ca4184982ce9b7a740f29bfdff0184d67510c2c5a_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/keystore/ffb64e29573682f118fdf41ca4184982ce9b7a740f29bfdff0184d67510c2c5a_sk -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/signcerts/ord1-hlf-ord.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/signcerts/ord1-hlf-ord.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/tlscacerts/tlsca.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/msp/tlscacerts/tlsca.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/tls/ca.crt -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/tls/server.crt -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/orderers/ord1-hlf-ord.alpha.svc.cluster.local/tls/server.key -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/tlsca/f6cfeb6a39ac7efe702b3ae6b23e9af91791c12f3998ea3e5d5a81699d696d14_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/tlsca/f6cfeb6a39ac7efe702b3ae6b23e9af91791c12f3998ea3e5d5a81699d696d14_sk -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/tlsca/tlsca.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/tlsca/tlsca.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/admincerts/Admin@alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/admincerts/Admin@alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/cacerts/ca.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/cacerts/ca.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/keystore/ba11f3aee63fb8cdc827605561051a856d00ce24e735101a17ae0a3e17181d4e_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/keystore/ba11f3aee63fb8cdc827605561051a856d00ce24e735101a17ae0a3e17181d4e_sk -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/signcerts/Admin@alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/signcerts/Admin@alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/tlscacerts/tlsca.alpha.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/msp/tlscacerts/tlsca.alpha.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/tls/ca.crt -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/tls/client.crt -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/alpha.svc.cluster.local/users/Admin@alpha.svc.cluster.local/tls/client.key -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/ca/8005aa0c5f808abd4ed99dbe741d92e2dddd585a55609f41c43944261912aed2_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/ca/8005aa0c5f808abd4ed99dbe741d92e2dddd585a55609f41c43944261912aed2_sk -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/ca/ca.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/ca/ca.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/msp/admincerts/Admin@beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/msp/admincerts/Admin@beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/msp/cacerts/ca.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/msp/cacerts/ca.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/msp/tlscacerts/tlsca.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/msp/tlscacerts/tlsca.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/admincerts/Admin@beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/admincerts/Admin@beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/cacerts/ca.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/cacerts/ca.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/keystore/351f0dda5fe4ea25b675d7251a606aabd20d8248c4da1cd7d7e6e4e8691f027f_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/keystore/351f0dda5fe4ea25b675d7251a606aabd20d8248c4da1cd7d7e6e4e8691f027f_sk -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/signcerts/peer1-hlf-peer.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/signcerts/peer1-hlf-peer.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/tlscacerts/tlsca.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/msp/tlscacerts/tlsca.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/tls/ca.crt -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/tls/server.crt -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/peers/peer1-hlf-peer.beta.svc.cluster.local/tls/server.key -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/tlsca/0c1d8817f7799aa576e1294f6aa8fe03973d4d4a962f2bc10a044dc2a217f8fd_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/tlsca/0c1d8817f7799aa576e1294f6aa8fe03973d4d4a962f2bc10a044dc2a217f8fd_sk -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/tlsca/tlsca.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/tlsca/tlsca.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/admincerts/Admin@beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/admincerts/Admin@beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/cacerts/ca.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/cacerts/ca.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/keystore/8bddfb366cd93701e0e5072e4693a6c908658cf5dcbbcd2bef93d81b8ac03f09_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/keystore/8bddfb366cd93701e0e5072e4693a6c908658cf5dcbbcd2bef93d81b8ac03f09_sk -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/signcerts/Admin@beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/signcerts/Admin@beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/tlscacerts/tlsca.beta.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/msp/tlscacerts/tlsca.beta.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/tls/ca.crt -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/tls/client.crt -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/beta.svc.cluster.local/users/Admin@beta.svc.cluster.local/tls/client.key -------------------------------------------------------------------------------- /examples/dev/helm_values/AlphaMSP/hlf-ord/ord1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/helm_values/AlphaMSP/hlf-ord/ord1.yaml -------------------------------------------------------------------------------- /examples/dev/helm_values/BetaMSP/hlf-couchdb/cdb-peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/helm_values/BetaMSP/hlf-couchdb/cdb-peer1.yaml -------------------------------------------------------------------------------- /examples/dev/helm_values/BetaMSP/hlf-peer/peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/helm_values/BetaMSP/hlf-peer/peer1.yaml -------------------------------------------------------------------------------- /examples/dev/helm_values/hlf-couchdb/cdb-peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/helm_values/hlf-couchdb/cdb-peer1.yaml -------------------------------------------------------------------------------- /examples/dev/helm_values/hlf-ord/ord1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/helm_values/hlf-ord/ord1.yaml -------------------------------------------------------------------------------- /examples/dev/helm_values/hlf-peer/peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/helm_values/hlf-peer/peer1.yaml -------------------------------------------------------------------------------- /examples/dev/nephos_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/dev/nephos_config.yaml -------------------------------------------------------------------------------- /examples/prod/config/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/prod/config/configtx.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/AlphaMSP/hlf-ord/alpha-ord1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/prod/helm_values/AlphaMSP/hlf-ord/alpha-ord1.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/AlphaMSP/hlf-ord/alpha-ord2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/prod/helm_values/AlphaMSP/hlf-ord/alpha-ord2.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/AlphaMSP/kafka/kafka-hlf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/prod/helm_values/AlphaMSP/kafka/kafka-hlf.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/BetaMSP/hlf-couchdb/cdb-beta-peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/prod/helm_values/BetaMSP/hlf-couchdb/cdb-beta-peer1.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/BetaMSP/hlf-couchdb/cdb-beta-peer2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/prod/helm_values/BetaMSP/hlf-couchdb/cdb-beta-peer2.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/BetaMSP/hlf-peer/beta-peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/prod/helm_values/BetaMSP/hlf-peer/beta-peer1.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/BetaMSP/hlf-peer/beta-peer2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/prod/helm_values/BetaMSP/hlf-peer/beta-peer2.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/GammaMSP/hlf-couchdb/cdb-gamma-peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/prod/helm_values/GammaMSP/hlf-couchdb/cdb-gamma-peer1.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/GammaMSP/hlf-couchdb/cdb-gamma-peer2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/prod/helm_values/GammaMSP/hlf-couchdb/cdb-gamma-peer2.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/GammaMSP/hlf-peer/gamma-peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/prod/helm_values/GammaMSP/hlf-peer/gamma-peer1.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/GammaMSP/hlf-peer/gamma-peer2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/prod/helm_values/GammaMSP/hlf-peer/gamma-peer2.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/hl-composer/hlc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/prod/helm_values/hl-composer/hlc.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/hlf-ca/ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/prod/helm_values/hlf-ca/ca.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/postgres-ca/ca-pg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/prod/helm_values/postgres-ca/ca-pg.yaml -------------------------------------------------------------------------------- /examples/prod/nephos_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/prod/nephos_config.yaml -------------------------------------------------------------------------------- /examples/qa-tls/config/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa-tls/config/configtx.yaml -------------------------------------------------------------------------------- /examples/qa-tls/helm_values/AlphaMSP/hlf-ord/ord1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa-tls/helm_values/AlphaMSP/hlf-ord/ord1.yaml -------------------------------------------------------------------------------- /examples/qa-tls/helm_values/BetaMSP/hlf-couchdb/cdb-beta-peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa-tls/helm_values/BetaMSP/hlf-couchdb/cdb-beta-peer1.yaml -------------------------------------------------------------------------------- /examples/qa-tls/helm_values/BetaMSP/hlf-peer/beta-peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa-tls/helm_values/BetaMSP/hlf-peer/beta-peer1.yaml -------------------------------------------------------------------------------- /examples/qa-tls/helm_values/hl-composer/hlc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa-tls/helm_values/hl-composer/hlc.yaml -------------------------------------------------------------------------------- /examples/qa-tls/helm_values/hlf-ca/ca-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa-tls/helm_values/hlf-ca/ca-tls.yaml -------------------------------------------------------------------------------- /examples/qa-tls/helm_values/hlf-ca/ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa-tls/helm_values/hlf-ca/ca.yaml -------------------------------------------------------------------------------- /examples/qa-tls/helm_values/postgres-ca/ca-pg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa-tls/helm_values/postgres-ca/ca-pg.yaml -------------------------------------------------------------------------------- /examples/qa-tls/helm_values/postgres-ca/ca-tls-pg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa-tls/helm_values/postgres-ca/ca-tls-pg.yaml -------------------------------------------------------------------------------- /examples/qa-tls/nephos_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa-tls/nephos_config.yaml -------------------------------------------------------------------------------- /examples/qa/config/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa/config/configtx.yaml -------------------------------------------------------------------------------- /examples/qa/helm_values/AlphaMSP/hlf-ord/ord1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa/helm_values/AlphaMSP/hlf-ord/ord1.yaml -------------------------------------------------------------------------------- /examples/qa/helm_values/BetaMSP/hlf-couchdb/cdb-beta-peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa/helm_values/BetaMSP/hlf-couchdb/cdb-beta-peer1.yaml -------------------------------------------------------------------------------- /examples/qa/helm_values/BetaMSP/hlf-peer/beta-peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa/helm_values/BetaMSP/hlf-peer/beta-peer1.yaml -------------------------------------------------------------------------------- /examples/qa/helm_values/hl-composer/hlc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa/helm_values/hl-composer/hlc.yaml -------------------------------------------------------------------------------- /examples/qa/helm_values/hlf-ca/ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa/helm_values/hlf-ca/ca.yaml -------------------------------------------------------------------------------- /examples/qa/helm_values/postgres-ca/ca-pg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa/helm_values/postgres-ca/ca-pg.yaml -------------------------------------------------------------------------------- /examples/qa/nephos_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/examples/qa/nephos_config.yaml -------------------------------------------------------------------------------- /integration/test_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/integration/test_dev.py -------------------------------------------------------------------------------- /integration/test_qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/integration/test_qa.py -------------------------------------------------------------------------------- /nephos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/__init__.py -------------------------------------------------------------------------------- /nephos/composer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/composer/__init__.py -------------------------------------------------------------------------------- /nephos/composer/connection_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/composer/connection_template.py -------------------------------------------------------------------------------- /nephos/composer/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/composer/install.py -------------------------------------------------------------------------------- /nephos/composer/upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/composer/upgrade.py -------------------------------------------------------------------------------- /nephos/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/deploy.py -------------------------------------------------------------------------------- /nephos/extras/Lets_Encrypt_Authority_X3.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/extras/Lets_Encrypt_Authority_X3.pem -------------------------------------------------------------------------------- /nephos/extras/helm-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/extras/helm-rbac.yaml -------------------------------------------------------------------------------- /nephos/fabric/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/fabric/__init__.py -------------------------------------------------------------------------------- /nephos/fabric/ca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/fabric/ca.py -------------------------------------------------------------------------------- /nephos/fabric/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/fabric/crypto.py -------------------------------------------------------------------------------- /nephos/fabric/ord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/fabric/ord.py -------------------------------------------------------------------------------- /nephos/fabric/peer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/fabric/peer.py -------------------------------------------------------------------------------- /nephos/fabric/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/fabric/settings.py -------------------------------------------------------------------------------- /nephos/fabric/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/fabric/utils.py -------------------------------------------------------------------------------- /nephos/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/helpers/__init__.py -------------------------------------------------------------------------------- /nephos/helpers/executer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/helpers/executer.py -------------------------------------------------------------------------------- /nephos/helpers/helm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/helpers/helm.py -------------------------------------------------------------------------------- /nephos/helpers/k8s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/helpers/k8s.py -------------------------------------------------------------------------------- /nephos/helpers/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/helpers/misc.py -------------------------------------------------------------------------------- /nephos/runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/nephos/runners.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/setup.py -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /tests/composer/test_connection_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/tests/composer/test_connection_template.py -------------------------------------------------------------------------------- /tests/composer/test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/tests/composer/test_install.py -------------------------------------------------------------------------------- /tests/composer/test_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/tests/composer/test_upgrade.py -------------------------------------------------------------------------------- /tests/fabric/test_ca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/tests/fabric/test_ca.py -------------------------------------------------------------------------------- /tests/fabric/test_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/tests/fabric/test_crypto.py -------------------------------------------------------------------------------- /tests/fabric/test_ord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/tests/fabric/test_ord.py -------------------------------------------------------------------------------- /tests/fabric/test_peer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/tests/fabric/test_peer.py -------------------------------------------------------------------------------- /tests/fabric/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/tests/fabric/test_settings.py -------------------------------------------------------------------------------- /tests/fabric/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/tests/fabric/test_utils.py -------------------------------------------------------------------------------- /tests/helpers/test_executer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/tests/helpers/test_executer.py -------------------------------------------------------------------------------- /tests/helpers/test_helm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/tests/helpers/test_helm.py -------------------------------------------------------------------------------- /tests/helpers/test_k8s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/tests/helpers/test_k8s.py -------------------------------------------------------------------------------- /tests/helpers/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/tests/helpers/test_misc.py -------------------------------------------------------------------------------- /tests/test_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/tests/test_deploy.py -------------------------------------------------------------------------------- /tests/test_runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/tests/test_runners.py -------------------------------------------------------------------------------- /travis_success.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/nephos/HEAD/travis_success.sh --------------------------------------------------------------------------------