├── .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 ├── certManagerCI_production.yaml ├── certManagerCI_staging.yaml ├── dev │ ├── config │ │ ├── configtx.yaml │ │ ├── crypto-config.yaml │ │ └── fabric-ca-client-config.yaml │ ├── crypto │ │ └── crypto-config │ │ │ ├── ordererOrganizations │ │ │ └── orderers.svc.cluster.local │ │ │ │ ├── ca │ │ │ │ ├── b7920824afa4f50db95e2354581ab7461841a53bf64c0386064369f09ba59a4f_sk │ │ │ │ └── ca.orderers.svc.cluster.local-cert.pem │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@orderers.svc.cluster.local-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.orderers.svc.cluster.local-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.orderers.svc.cluster.local-cert.pem │ │ │ │ ├── orderers │ │ │ │ └── ord1-hlf-ord.orderers.svc.cluster.local │ │ │ │ │ ├── msp │ │ │ │ │ ├── admincerts │ │ │ │ │ │ └── Admin@orderers.svc.cluster.local-cert.pem │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.orderers.svc.cluster.local-cert.pem │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── d5d80631395671460ab46531aa7e62c0cf87869b272a8f474d1be0ecf4989290_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── ord1-hlf-ord.orderers.svc.cluster.local-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.orderers.svc.cluster.local-cert.pem │ │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key │ │ │ │ ├── tlsca │ │ │ │ ├── 4166da17f6712756896e61dba499814e5f40cef704201df5628d8ef0a8e9d2f6_sk │ │ │ │ └── tlsca.orderers.svc.cluster.local-cert.pem │ │ │ │ └── users │ │ │ │ └── Admin@orderers.svc.cluster.local │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@orderers.svc.cluster.local-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.orderers.svc.cluster.local-cert.pem │ │ │ │ ├── keystore │ │ │ │ │ └── 003e189a7fc4c454f1b6dab08c2f313c98d13b40388b04acd348b8aba5a2cc35_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── Admin@orderers.svc.cluster.local-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.orderers.svc.cluster.local-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── client.crt │ │ │ │ └── client.key │ │ │ └── peerOrganizations │ │ │ └── peers.svc.cluster.local │ │ │ ├── ca │ │ │ ├── 512fad948caabae208f8005155af9782b8945ef3fef219ada5c9d08b1923f399_sk │ │ │ └── ca.peers.svc.cluster.local-cert.pem │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@peers.svc.cluster.local-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.peers.svc.cluster.local-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.peers.svc.cluster.local-cert.pem │ │ │ ├── peers │ │ │ └── peer1-hlf-peer.peers.svc.cluster.local │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@peers.svc.cluster.local-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.peers.svc.cluster.local-cert.pem │ │ │ │ ├── keystore │ │ │ │ │ └── b2336f4865c5f471a3118444e3a8acaba9bab443f05304f499e34da9329f41c0_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── peer1-hlf-peer.peers.svc.cluster.local-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.peers.svc.cluster.local-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ │ ├── tlsca │ │ │ ├── 23710b53fa21c30ae92c70f8189be90d90ec88d7a33e90b19499c6a3654dc0af_sk │ │ │ └── tlsca.peers.svc.cluster.local-cert.pem │ │ │ └── users │ │ │ └── Admin@peers.svc.cluster.local │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@peers.svc.cluster.local-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.peers.svc.cluster.local-cert.pem │ │ │ ├── keystore │ │ │ │ └── 79cee3f6d889ee90fcaf92115a4b22f1b606c8e2339c594e21693ae916a53dd4_sk │ │ │ ├── signcerts │ │ │ │ └── Admin@peers.svc.cluster.local-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.peers.svc.cluster.local-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── client.crt │ │ │ └── client.key │ ├── helm_values │ │ ├── hlf-couchdb │ │ │ └── cdb-peer1.yaml │ │ ├── hlf-ord │ │ │ └── ord1.yaml │ │ └── hlf-peer │ │ │ └── peer1.yaml │ └── nephos_config.yaml ├── prod │ ├── config │ │ └── configtx.yaml │ ├── helm_values │ │ ├── hl-composer │ │ │ └── hlc.yaml │ │ ├── hlf-ca │ │ │ └── ca.yaml │ │ ├── hlf-couchdb │ │ │ ├── cdb-peer1.yaml │ │ │ └── cdb-peer2.yaml │ │ ├── hlf-ord │ │ │ ├── ord1.yaml │ │ │ └── ord2.yaml │ │ ├── hlf-peer │ │ │ ├── peer1.yaml │ │ │ └── peer2.yaml │ │ ├── kafka │ │ │ └── kafka-hlf.yaml │ │ └── postgres-ca │ │ │ └── ca-pg.yaml │ └── nephos_config.yaml └── qa │ ├── config │ └── configtx.yaml │ ├── helm_values │ ├── hl-composer │ │ └── hlc.yaml │ ├── hlf-ca │ │ └── ca.yaml │ ├── hlf-couchdb │ │ └── cdb-peer1.yaml │ ├── hlf-ord │ │ └── ord1.yaml │ ├── hlf-peer │ │ └── peer1.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 │ ├── 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_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/aidtechnology/nephos/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/README.md -------------------------------------------------------------------------------- /cosmic_ray_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/cosmic_ray_config.yaml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../README.md -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /docs/source/nephos.composer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/docs/source/nephos.composer.rst -------------------------------------------------------------------------------- /docs/source/nephos.fabric.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/docs/source/nephos.fabric.rst -------------------------------------------------------------------------------- /docs/source/nephos.helpers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/docs/source/nephos.helpers.rst -------------------------------------------------------------------------------- /docs/source/nephos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/docs/source/nephos.rst -------------------------------------------------------------------------------- /examples/ca-nephos-local.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/ca-nephos-local.crt -------------------------------------------------------------------------------- /examples/ca-nephos-local.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/ca-nephos-local.key -------------------------------------------------------------------------------- /examples/ca-nephos-local.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/ca-nephos-local.pem -------------------------------------------------------------------------------- /examples/certManagerCI_production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/certManagerCI_production.yaml -------------------------------------------------------------------------------- /examples/certManagerCI_staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/certManagerCI_staging.yaml -------------------------------------------------------------------------------- /examples/dev/config/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/config/configtx.yaml -------------------------------------------------------------------------------- /examples/dev/config/crypto-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/config/crypto-config.yaml -------------------------------------------------------------------------------- /examples/dev/config/fabric-ca-client-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/config/fabric-ca-client-config.yaml -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/ca/b7920824afa4f50db95e2354581ab7461841a53bf64c0386064369f09ba59a4f_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/ca/b7920824afa4f50db95e2354581ab7461841a53bf64c0386064369f09ba59a4f_sk -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/ca/ca.orderers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/ca/ca.orderers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/msp/admincerts/Admin@orderers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/msp/admincerts/Admin@orderers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/msp/cacerts/ca.orderers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/msp/cacerts/ca.orderers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/msp/tlscacerts/tlsca.orderers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/msp/tlscacerts/tlsca.orderers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/orderers/ord1-hlf-ord.orderers.svc.cluster.local/msp/admincerts/Admin@orderers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/orderers/ord1-hlf-ord.orderers.svc.cluster.local/msp/admincerts/Admin@orderers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/orderers/ord1-hlf-ord.orderers.svc.cluster.local/msp/cacerts/ca.orderers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/orderers/ord1-hlf-ord.orderers.svc.cluster.local/msp/cacerts/ca.orderers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/orderers/ord1-hlf-ord.orderers.svc.cluster.local/msp/keystore/d5d80631395671460ab46531aa7e62c0cf87869b272a8f474d1be0ecf4989290_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/orderers/ord1-hlf-ord.orderers.svc.cluster.local/msp/keystore/d5d80631395671460ab46531aa7e62c0cf87869b272a8f474d1be0ecf4989290_sk -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/orderers/ord1-hlf-ord.orderers.svc.cluster.local/msp/signcerts/ord1-hlf-ord.orderers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/orderers/ord1-hlf-ord.orderers.svc.cluster.local/msp/signcerts/ord1-hlf-ord.orderers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/orderers/ord1-hlf-ord.orderers.svc.cluster.local/msp/tlscacerts/tlsca.orderers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/orderers/ord1-hlf-ord.orderers.svc.cluster.local/msp/tlscacerts/tlsca.orderers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/orderers/ord1-hlf-ord.orderers.svc.cluster.local/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/orderers/ord1-hlf-ord.orderers.svc.cluster.local/tls/ca.crt -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/orderers/ord1-hlf-ord.orderers.svc.cluster.local/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/orderers/ord1-hlf-ord.orderers.svc.cluster.local/tls/server.crt -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/orderers/ord1-hlf-ord.orderers.svc.cluster.local/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/orderers/ord1-hlf-ord.orderers.svc.cluster.local/tls/server.key -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/tlsca/4166da17f6712756896e61dba499814e5f40cef704201df5628d8ef0a8e9d2f6_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/tlsca/4166da17f6712756896e61dba499814e5f40cef704201df5628d8ef0a8e9d2f6_sk -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/tlsca/tlsca.orderers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/tlsca/tlsca.orderers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/users/Admin@orderers.svc.cluster.local/msp/admincerts/Admin@orderers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/users/Admin@orderers.svc.cluster.local/msp/admincerts/Admin@orderers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/users/Admin@orderers.svc.cluster.local/msp/cacerts/ca.orderers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/users/Admin@orderers.svc.cluster.local/msp/cacerts/ca.orderers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/users/Admin@orderers.svc.cluster.local/msp/keystore/003e189a7fc4c454f1b6dab08c2f313c98d13b40388b04acd348b8aba5a2cc35_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/users/Admin@orderers.svc.cluster.local/msp/keystore/003e189a7fc4c454f1b6dab08c2f313c98d13b40388b04acd348b8aba5a2cc35_sk -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/users/Admin@orderers.svc.cluster.local/msp/signcerts/Admin@orderers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/users/Admin@orderers.svc.cluster.local/msp/signcerts/Admin@orderers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/users/Admin@orderers.svc.cluster.local/msp/tlscacerts/tlsca.orderers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/users/Admin@orderers.svc.cluster.local/msp/tlscacerts/tlsca.orderers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/users/Admin@orderers.svc.cluster.local/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/users/Admin@orderers.svc.cluster.local/tls/ca.crt -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/users/Admin@orderers.svc.cluster.local/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/users/Admin@orderers.svc.cluster.local/tls/client.crt -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/users/Admin@orderers.svc.cluster.local/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/ordererOrganizations/orderers.svc.cluster.local/users/Admin@orderers.svc.cluster.local/tls/client.key -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/ca/512fad948caabae208f8005155af9782b8945ef3fef219ada5c9d08b1923f399_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/ca/512fad948caabae208f8005155af9782b8945ef3fef219ada5c9d08b1923f399_sk -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/ca/ca.peers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/ca/ca.peers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/msp/admincerts/Admin@peers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/msp/admincerts/Admin@peers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/msp/cacerts/ca.peers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/msp/cacerts/ca.peers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/msp/tlscacerts/tlsca.peers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/msp/tlscacerts/tlsca.peers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/peers/peer1-hlf-peer.peers.svc.cluster.local/msp/admincerts/Admin@peers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/peers/peer1-hlf-peer.peers.svc.cluster.local/msp/admincerts/Admin@peers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/peers/peer1-hlf-peer.peers.svc.cluster.local/msp/cacerts/ca.peers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/peers/peer1-hlf-peer.peers.svc.cluster.local/msp/cacerts/ca.peers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/peers/peer1-hlf-peer.peers.svc.cluster.local/msp/keystore/b2336f4865c5f471a3118444e3a8acaba9bab443f05304f499e34da9329f41c0_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/peers/peer1-hlf-peer.peers.svc.cluster.local/msp/keystore/b2336f4865c5f471a3118444e3a8acaba9bab443f05304f499e34da9329f41c0_sk -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/peers/peer1-hlf-peer.peers.svc.cluster.local/msp/signcerts/peer1-hlf-peer.peers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/peers/peer1-hlf-peer.peers.svc.cluster.local/msp/signcerts/peer1-hlf-peer.peers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/peers/peer1-hlf-peer.peers.svc.cluster.local/msp/tlscacerts/tlsca.peers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/peers/peer1-hlf-peer.peers.svc.cluster.local/msp/tlscacerts/tlsca.peers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/peers/peer1-hlf-peer.peers.svc.cluster.local/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/peers/peer1-hlf-peer.peers.svc.cluster.local/tls/ca.crt -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/peers/peer1-hlf-peer.peers.svc.cluster.local/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/peers/peer1-hlf-peer.peers.svc.cluster.local/tls/server.crt -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/peers/peer1-hlf-peer.peers.svc.cluster.local/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/peers/peer1-hlf-peer.peers.svc.cluster.local/tls/server.key -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/tlsca/23710b53fa21c30ae92c70f8189be90d90ec88d7a33e90b19499c6a3654dc0af_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/tlsca/23710b53fa21c30ae92c70f8189be90d90ec88d7a33e90b19499c6a3654dc0af_sk -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/tlsca/tlsca.peers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/tlsca/tlsca.peers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/users/Admin@peers.svc.cluster.local/msp/admincerts/Admin@peers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/users/Admin@peers.svc.cluster.local/msp/admincerts/Admin@peers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/users/Admin@peers.svc.cluster.local/msp/cacerts/ca.peers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/users/Admin@peers.svc.cluster.local/msp/cacerts/ca.peers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/users/Admin@peers.svc.cluster.local/msp/keystore/79cee3f6d889ee90fcaf92115a4b22f1b606c8e2339c594e21693ae916a53dd4_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/users/Admin@peers.svc.cluster.local/msp/keystore/79cee3f6d889ee90fcaf92115a4b22f1b606c8e2339c594e21693ae916a53dd4_sk -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/users/Admin@peers.svc.cluster.local/msp/signcerts/Admin@peers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/users/Admin@peers.svc.cluster.local/msp/signcerts/Admin@peers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/users/Admin@peers.svc.cluster.local/msp/tlscacerts/tlsca.peers.svc.cluster.local-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/users/Admin@peers.svc.cluster.local/msp/tlscacerts/tlsca.peers.svc.cluster.local-cert.pem -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/users/Admin@peers.svc.cluster.local/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/users/Admin@peers.svc.cluster.local/tls/ca.crt -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/users/Admin@peers.svc.cluster.local/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/users/Admin@peers.svc.cluster.local/tls/client.crt -------------------------------------------------------------------------------- /examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/users/Admin@peers.svc.cluster.local/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/crypto/crypto-config/peerOrganizations/peers.svc.cluster.local/users/Admin@peers.svc.cluster.local/tls/client.key -------------------------------------------------------------------------------- /examples/dev/helm_values/hlf-couchdb/cdb-peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/helm_values/hlf-couchdb/cdb-peer1.yaml -------------------------------------------------------------------------------- /examples/dev/helm_values/hlf-ord/ord1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/helm_values/hlf-ord/ord1.yaml -------------------------------------------------------------------------------- /examples/dev/helm_values/hlf-peer/peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/helm_values/hlf-peer/peer1.yaml -------------------------------------------------------------------------------- /examples/dev/nephos_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/dev/nephos_config.yaml -------------------------------------------------------------------------------- /examples/prod/config/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/prod/config/configtx.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/hl-composer/hlc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/prod/helm_values/hl-composer/hlc.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/hlf-ca/ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/prod/helm_values/hlf-ca/ca.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/hlf-couchdb/cdb-peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/prod/helm_values/hlf-couchdb/cdb-peer1.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/hlf-couchdb/cdb-peer2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/prod/helm_values/hlf-couchdb/cdb-peer2.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/hlf-ord/ord1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/prod/helm_values/hlf-ord/ord1.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/hlf-ord/ord2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/prod/helm_values/hlf-ord/ord2.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/hlf-peer/peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/prod/helm_values/hlf-peer/peer1.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/hlf-peer/peer2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/prod/helm_values/hlf-peer/peer2.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/kafka/kafka-hlf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/prod/helm_values/kafka/kafka-hlf.yaml -------------------------------------------------------------------------------- /examples/prod/helm_values/postgres-ca/ca-pg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/prod/helm_values/postgres-ca/ca-pg.yaml -------------------------------------------------------------------------------- /examples/prod/nephos_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/prod/nephos_config.yaml -------------------------------------------------------------------------------- /examples/qa/config/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/qa/config/configtx.yaml -------------------------------------------------------------------------------- /examples/qa/helm_values/hl-composer/hlc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/qa/helm_values/hl-composer/hlc.yaml -------------------------------------------------------------------------------- /examples/qa/helm_values/hlf-ca/ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/qa/helm_values/hlf-ca/ca.yaml -------------------------------------------------------------------------------- /examples/qa/helm_values/hlf-couchdb/cdb-peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/qa/helm_values/hlf-couchdb/cdb-peer1.yaml -------------------------------------------------------------------------------- /examples/qa/helm_values/hlf-ord/ord1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/qa/helm_values/hlf-ord/ord1.yaml -------------------------------------------------------------------------------- /examples/qa/helm_values/hlf-peer/peer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/qa/helm_values/hlf-peer/peer1.yaml -------------------------------------------------------------------------------- /examples/qa/helm_values/postgres-ca/ca-pg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/qa/helm_values/postgres-ca/ca-pg.yaml -------------------------------------------------------------------------------- /examples/qa/nephos_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/examples/qa/nephos_config.yaml -------------------------------------------------------------------------------- /integration/test_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/integration/test_dev.py -------------------------------------------------------------------------------- /integration/test_qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/integration/test_qa.py -------------------------------------------------------------------------------- /nephos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/__init__.py -------------------------------------------------------------------------------- /nephos/composer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/composer/__init__.py -------------------------------------------------------------------------------- /nephos/composer/connection_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/composer/connection_template.py -------------------------------------------------------------------------------- /nephos/composer/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/composer/install.py -------------------------------------------------------------------------------- /nephos/composer/upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/composer/upgrade.py -------------------------------------------------------------------------------- /nephos/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/deploy.py -------------------------------------------------------------------------------- /nephos/extras/Lets_Encrypt_Authority_X3.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/extras/Lets_Encrypt_Authority_X3.pem -------------------------------------------------------------------------------- /nephos/extras/helm-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/extras/helm-rbac.yaml -------------------------------------------------------------------------------- /nephos/fabric/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/fabric/__init__.py -------------------------------------------------------------------------------- /nephos/fabric/ca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/fabric/ca.py -------------------------------------------------------------------------------- /nephos/fabric/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/fabric/crypto.py -------------------------------------------------------------------------------- /nephos/fabric/ord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/fabric/ord.py -------------------------------------------------------------------------------- /nephos/fabric/peer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/fabric/peer.py -------------------------------------------------------------------------------- /nephos/fabric/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/fabric/settings.py -------------------------------------------------------------------------------- /nephos/fabric/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/fabric/utils.py -------------------------------------------------------------------------------- /nephos/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/helpers/__init__.py -------------------------------------------------------------------------------- /nephos/helpers/helm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/helpers/helm.py -------------------------------------------------------------------------------- /nephos/helpers/k8s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/helpers/k8s.py -------------------------------------------------------------------------------- /nephos/helpers/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/helpers/misc.py -------------------------------------------------------------------------------- /nephos/runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/nephos/runners.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/setup.py -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /tests/composer/test_connection_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/tests/composer/test_connection_template.py -------------------------------------------------------------------------------- /tests/composer/test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/tests/composer/test_install.py -------------------------------------------------------------------------------- /tests/composer/test_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/tests/composer/test_upgrade.py -------------------------------------------------------------------------------- /tests/fabric/test_ca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/tests/fabric/test_ca.py -------------------------------------------------------------------------------- /tests/fabric/test_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/tests/fabric/test_crypto.py -------------------------------------------------------------------------------- /tests/fabric/test_ord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/tests/fabric/test_ord.py -------------------------------------------------------------------------------- /tests/fabric/test_peer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/tests/fabric/test_peer.py -------------------------------------------------------------------------------- /tests/fabric/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/tests/fabric/test_settings.py -------------------------------------------------------------------------------- /tests/fabric/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/tests/fabric/test_utils.py -------------------------------------------------------------------------------- /tests/helpers/test_helm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/tests/helpers/test_helm.py -------------------------------------------------------------------------------- /tests/helpers/test_k8s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/tests/helpers/test_k8s.py -------------------------------------------------------------------------------- /tests/helpers/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/tests/helpers/test_misc.py -------------------------------------------------------------------------------- /tests/test_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/tests/test_deploy.py -------------------------------------------------------------------------------- /tests/test_runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/tests/test_runners.py -------------------------------------------------------------------------------- /travis_success.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidtechnology/nephos/HEAD/travis_success.sh --------------------------------------------------------------------------------