├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yaml │ ├── config.yaml │ └── enhancement.yaml ├── PULL_REQUEST_TEMPLATE.md ├── kind-config.yaml ├── settings.yml └── workflows │ ├── goreleaser-beta.yml │ ├── goreleaser.yml │ ├── release_charts.yml │ ├── release_web.yml │ ├── test-kubectl-plugin.yml │ └── test.yml ├── .gitignore ├── .go-version ├── .golangci.yml ├── .goreleaser.yml ├── .krew.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CREDITS ├── Dockerfile ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── PROJECT ├── README.md ├── analytics └── analytics.go ├── chart ├── README.md └── hlf-operator │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── _helpers.tpl │ ├── crds │ │ ├── hlf.kungfusoftware.es_fabriccas.yaml │ │ ├── hlf.kungfusoftware.es_fabricchaincodes.yaml │ │ ├── hlf.kungfusoftware.es_fabricexplorers.yaml │ │ ├── hlf.kungfusoftware.es_fabricfollowerchannels.yaml │ │ ├── hlf.kungfusoftware.es_fabricidentities.yaml │ │ ├── hlf.kungfusoftware.es_fabricmainchannels.yaml │ │ ├── hlf.kungfusoftware.es_fabricnetworkconfigs.yaml │ │ ├── hlf.kungfusoftware.es_fabricoperationsconsoles.yaml │ │ ├── hlf.kungfusoftware.es_fabricoperatorapis.yaml │ │ ├── hlf.kungfusoftware.es_fabricoperatoruis.yaml │ │ ├── hlf.kungfusoftware.es_fabricorderernodes.yaml │ │ ├── hlf.kungfusoftware.es_fabricorderingservices.yaml │ │ └── hlf.kungfusoftware.es_fabricpeers.yaml │ ├── deployment.yaml │ ├── rbac.yaml │ ├── servicemonitor.yaml │ └── svc-metrics.yaml │ └── values.yaml ├── charts ├── fabric-operations-console │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── config.yaml │ │ ├── deployment-couchdb.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── pvc-couchdb.yaml │ │ ├── secret--couchdb.yaml │ │ ├── secret.yaml │ │ ├── service--couchdb.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml ├── hlf-ca │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap--ca.yaml │ │ ├── configmap--config-tls.yaml │ │ ├── configmap--config.yaml │ │ ├── deployment.yaml │ │ ├── istio-gateway.yaml │ │ ├── pvc.yaml │ │ ├── secret--ca.yaml │ │ ├── secret--msp-cryptomaterial.yaml │ │ ├── secret--msp-tls-cryptomaterial.yaml │ │ ├── secret--tls-cryptomaterial.yaml │ │ ├── service.yaml │ │ ├── servicemonitor.yaml │ │ ├── tls-route.yaml │ │ ├── traefikroute.yaml │ │ └── virtualservice.yaml │ ├── tests │ │ ├── README.md │ │ └── values │ │ │ ├── intermediate.yaml │ │ │ └── root.yaml │ └── values.yaml ├── hlf-operator-api │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml ├── hlf-operator-ui │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── config.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml ├── hlf-ord │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ └── hlf_ordnode.yaml │ └── values.yaml ├── hlf-ordnode │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── config-ou.yaml │ │ ├── configmap--ord--core.yaml │ │ ├── configmap--ord.yaml │ │ ├── deployment.yaml │ │ ├── istio-gateway-admin.yaml │ │ ├── istio-gateway-proxy.yaml │ │ ├── istio-gateway.yaml │ │ ├── istio-virtualservice-admin.yaml │ │ ├── istio-virtualservice-proxy.yaml │ │ ├── istio-virtualservice.yaml │ │ ├── pvc.yaml │ │ ├── secret--orderer0-admin.yaml │ │ ├── secret--orderer0-idcert.yaml │ │ ├── secret--orderer0-idkey.yaml │ │ ├── secret--orderer0-tls.yaml │ │ ├── secret--ordererorg-cacert.yaml │ │ ├── secret--ordererorg-tlsrootcert.yaml │ │ ├── secret--peerorg-tlsrootcert.yaml │ │ ├── secret--tx-genesis.yaml │ │ ├── service.yaml │ │ ├── servicemonitor.yaml │ │ ├── tlsroute-admin.yaml │ │ ├── tlsroute.yaml │ │ ├── traefikroute-admin.yaml │ │ └── traefikroute.yaml │ └── values.yaml └── hlf-peer │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── _helpers.tpl │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── config-ou.yaml │ ├── configmap--peer--core.yaml │ ├── configmap--peer.yaml │ ├── deployment.yaml │ ├── istio-gateway-proxy.yaml │ ├── istio-gateway.yaml │ ├── podmonitor.yaml │ ├── pvc-chaincode.yaml │ ├── pvc-couchdb.yaml │ ├── pvc.yaml │ ├── secret--couchdb.yaml │ ├── secret--peer-idcert.yaml │ ├── secret--peer-idkey.yaml │ ├── secret--peer-ops-tls.yaml │ ├── secret--peer-tls.yaml │ ├── secret--peerorg-cacert.yaml │ ├── secret--peerorg-intcacert.yaml │ ├── secret--peerorg-tlsintcacert.yaml │ ├── secret--peerorg-tlsrootcert.yaml │ ├── secret--tlsclientrootcert.yaml │ ├── service-fs.yaml │ ├── service-grpc.yaml │ ├── serviceaccount.yaml │ ├── servicemonitor.yaml │ ├── tls-route.yaml │ ├── traefikroute.yaml │ ├── virtualservice-proxy.yaml │ └── virtualservice.yaml │ └── values.yaml ├── config ├── certmanager │ ├── certificate.yaml │ ├── kustomization.yaml │ └── kustomizeconfig.yaml ├── crd │ ├── bases │ │ ├── hlf.kungfusoftware.es_fabriccas.yaml │ │ ├── hlf.kungfusoftware.es_fabricchaincodeapproves.yaml │ │ ├── hlf.kungfusoftware.es_fabricchaincodecommits.yaml │ │ ├── hlf.kungfusoftware.es_fabricchaincodeinstalls.yaml │ │ ├── hlf.kungfusoftware.es_fabricchaincodes.yaml │ │ ├── hlf.kungfusoftware.es_fabricchaincodetemplates.yaml │ │ ├── hlf.kungfusoftware.es_fabricexplorers.yaml │ │ ├── hlf.kungfusoftware.es_fabricfollowerchannels.yaml │ │ ├── hlf.kungfusoftware.es_fabricidentities.yaml │ │ ├── hlf.kungfusoftware.es_fabricmainchannels.yaml │ │ ├── hlf.kungfusoftware.es_fabricnetworkconfigs.yaml │ │ ├── hlf.kungfusoftware.es_fabricoperationsconsoles.yaml │ │ ├── hlf.kungfusoftware.es_fabricoperatorapis.yaml │ │ ├── hlf.kungfusoftware.es_fabricoperatoruis.yaml │ │ ├── hlf.kungfusoftware.es_fabricorderernodes.yaml │ │ ├── hlf.kungfusoftware.es_fabricorderingservices.yaml │ │ └── hlf.kungfusoftware.es_fabricpeers.yaml │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── patches │ │ ├── cainjection_in_memcacheds.yaml │ │ └── webhook_in_memcacheds.yaml ├── default │ ├── kustomization.yaml │ ├── manager_auth_proxy_patch.yaml │ ├── manager_webhook_patch.yaml │ └── webhookcainjection_patch.yaml ├── manager │ ├── kustomization.yaml │ └── manager.yaml ├── prometheus │ ├── kustomization.yaml │ └── monitor.yaml ├── rbac │ ├── auth_proxy_client_clusterrole.yaml │ ├── auth_proxy_role.yaml │ ├── auth_proxy_role_binding.yaml │ ├── auth_proxy_service.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── memcached_editor_role.yaml │ ├── memcached_viewer_role.yaml │ ├── role.yaml │ └── role_binding.yaml ├── samples │ ├── hlf_v1alpha1_fabricca.yaml │ ├── hlf_v1alpha1_fabricorderer.yaml │ ├── hlf_v1alpha1_fabricordererca.yaml │ ├── hlf_v1alpha1_fabricpeer.yaml │ └── kustomization.yaml └── webhook │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── service.yaml ├── controllers ├── ca │ ├── ca_controller.go │ ├── ca_controller_test.go │ └── types.go ├── certs │ ├── key_behavior_demo_test.go │ ├── provision_certs.go │ └── provision_certs_test.go ├── certs_vault │ ├── provision_certs.go │ └── provision_certs_test.go ├── chaincode │ ├── approve │ │ └── chaincode_approve_controller.go │ ├── commit │ │ └── chaincode_commit_controller.go │ ├── deploy │ │ └── chaincode_deploy_controller.go │ └── install │ │ └── chaincode_install_controller.go ├── console │ ├── console_controller.go │ └── types.go ├── followerchannel │ └── followerchannel_controller.go ├── hlf_controller.go ├── hlfmetrics │ └── metrics.go ├── identity │ ├── identity_controller.go │ └── identity_controller_test.go ├── mainchannel │ └── mainchannel_controller.go ├── networkconfig │ ├── networkconfig_controller.go │ └── networkconfig_controller_test.go ├── operatorapi │ ├── operatorapi.go │ └── types.go ├── operatorui │ ├── operatorui.go │ └── types.go ├── ordnode │ ├── ordnode_controller.go │ ├── ordnode_controller_test.go │ └── types.go ├── ordservice │ ├── ordservice_controller.go │ └── types.go ├── peer │ ├── peer_controller.go │ ├── peer_controller_test.go │ └── types.go ├── suite_test.go ├── tests │ ├── ca_controller_test.go │ ├── ord_controller_test.go │ ├── peer_controller_test.go │ ├── suite_test.go │ └── utils.go ├── testutils │ ├── channel.go │ └── genesis.go └── utils │ ├── crl.go │ ├── lease.go │ └── utils.go ├── dashboards ├── ca-operations.json ├── ca-resources.json ├── chaincode.json ├── chaincodes.json ├── channel.json ├── couchdb.json ├── hlf-operator.json └── transactions.json ├── docs ├── api │ ├── autogen │ │ ├── config.json │ │ └── templates │ │ │ ├── members.tpl │ │ │ ├── pkg.tpl │ │ │ └── type.tpl │ └── hlf.kungfusoftware.io.ref.html ├── fabric-ca.md ├── fabric-orderer.md ├── fabric-peer.md ├── index.md └── reference │ ├── technical.md │ └── technical.md.bak ├── fixtures ├── chaincodes │ └── fabcar │ │ ├── external │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .vscode │ │ │ └── launch.json │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── chaincode.env.example │ │ ├── fabcar.go │ │ ├── go.mod │ │ ├── go.sum │ │ └── metadata.json │ │ ├── go │ │ ├── fabcar.go │ │ ├── go.mod │ │ └── go.sum │ │ ├── java │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.gradle │ │ ├── config │ │ │ └── checkstyle │ │ │ │ ├── checkstyle.xml │ │ │ │ └── suppressions.xml │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── hyperledger │ │ │ │ └── fabric │ │ │ │ └── samples │ │ │ │ └── fabcar │ │ │ │ ├── Car.java │ │ │ │ ├── CarQueryResult.java │ │ │ │ └── FabCar.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── hyperledger │ │ │ └── fabric │ │ │ └── samples │ │ │ └── fabcar │ │ │ ├── CarQueryResultTest.java │ │ │ ├── CarTest.java │ │ │ └── FabCarTest.java │ │ ├── javascript │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── index.js │ │ ├── lib │ │ │ └── fabcar.js │ │ └── package.json │ │ └── typescript │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── package.json │ │ ├── src │ │ ├── car.ts │ │ ├── fabcar.ts │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── tslint.json └── external-chaincode │ └── asset-external │ ├── .dockerignore │ ├── .gitignore │ ├── .vscode │ └── launch.json │ ├── Dockerfile │ ├── README.md │ ├── assetTransfer.go │ ├── go.mod │ ├── go.sum │ └── metadata.json ├── go.mod ├── go.sum ├── hack ├── README.md ├── boilerplate.go.txt ├── istio-operator.yaml └── istio-operator │ ├── Chart.yaml │ ├── crds │ └── crd-operator.yaml │ ├── files │ └── gen-operator.yaml │ ├── templates │ ├── clusterrole.yaml │ ├── clusterrole_binding.yaml │ ├── crds.yaml │ ├── deployment.yaml │ ├── namespace.yaml │ ├── service.yaml │ └── service_account.yaml │ └── values.yaml ├── images └── tools │ └── Dockerfile ├── internal └── github.com │ └── hyperledger │ ├── fabric-ca │ ├── api │ │ ├── client.go │ │ ├── net.go │ │ └── serverresponses.go │ ├── lib │ │ ├── attr │ │ │ ├── attribute.go │ │ │ └── attribute_test.go │ │ ├── attrmgr │ │ │ ├── attrmgr.go │ │ │ └── attrmgr_test.go │ │ ├── ca.go │ │ ├── ca_test.go │ │ ├── caconfig.go │ │ ├── caerrors │ │ │ ├── servererror.go │ │ │ └── servererror_test.go │ │ ├── capkcs11_test.go │ │ ├── certdbaccessor.go │ │ ├── certdbaccessor_test.go │ │ ├── client.go │ │ ├── client │ │ │ └── credential │ │ │ │ ├── credential.go │ │ │ │ ├── idemix │ │ │ │ ├── credential.go │ │ │ │ └── signerconfig.go │ │ │ │ └── x509 │ │ │ │ ├── credential.go │ │ │ │ ├── mocks │ │ │ │ ├── Client.go │ │ │ │ └── Identity.go │ │ │ │ └── signer.go │ │ ├── client_whitebox_test.go │ │ ├── clientconfig.go │ │ ├── common │ │ │ ├── idemix │ │ │ │ └── common.go │ │ │ └── log │ │ │ │ ├── log.go │ │ │ │ └── log_test.go │ │ ├── dbaccessor.go │ │ ├── identity.go │ │ ├── identity_test.go │ │ ├── keyrequest.go │ │ ├── keyrequestnopkcs11.go │ │ ├── metadata │ │ │ ├── version.go │ │ │ └── version_test.go │ │ ├── mocks │ │ │ ├── operations_server.go │ │ │ └── server_request_context.go │ │ ├── server.go │ │ ├── server │ │ │ ├── certificaterequest │ │ │ │ ├── certificaterequest.go │ │ │ │ ├── certificaterequest_test.go │ │ │ │ └── mocks │ │ │ │ │ ├── CertificateRequest.go │ │ │ │ │ └── RequestContext.go │ │ │ ├── db │ │ │ │ ├── db.go │ │ │ │ ├── db_suite_test.go │ │ │ │ ├── db_test.go │ │ │ │ ├── factory │ │ │ │ │ ├── factory.go │ │ │ │ │ └── factory_test.go │ │ │ │ ├── metrics.go │ │ │ │ ├── metrics_test.go │ │ │ │ ├── migrator.go │ │ │ │ ├── migrator_test.go │ │ │ │ ├── mocks │ │ │ │ │ ├── FabricCADB.go │ │ │ │ │ ├── Result.go │ │ │ │ │ ├── SqlxDB.go │ │ │ │ │ ├── fabricCATX.go │ │ │ │ │ ├── migrator.go │ │ │ │ │ └── sqlxTx.go │ │ │ │ ├── mysql │ │ │ │ │ ├── migrator.go │ │ │ │ │ ├── migrator_test.go │ │ │ │ │ ├── mocks │ │ │ │ │ │ ├── fabricCADB.go │ │ │ │ │ │ └── fabricCATx.go │ │ │ │ │ ├── mysql.go │ │ │ │ │ ├── mysql_suite_test.go │ │ │ │ │ └── mysql_test.go │ │ │ │ ├── postgres │ │ │ │ │ ├── internal_test.go │ │ │ │ │ ├── migrator.go │ │ │ │ │ ├── migrator_test.go │ │ │ │ │ ├── mocks │ │ │ │ │ │ ├── fabricCADB.go │ │ │ │ │ │ └── fabricCATx.go │ │ │ │ │ ├── postgres.go │ │ │ │ │ ├── postgres_suite_test.go │ │ │ │ │ └── postgres_test.go │ │ │ │ ├── sqlite │ │ │ │ │ ├── driver.go │ │ │ │ │ ├── migrator.go │ │ │ │ │ ├── migrator_test.go │ │ │ │ │ ├── mocks │ │ │ │ │ │ ├── create.go │ │ │ │ │ │ ├── fabricCADB.go │ │ │ │ │ │ └── fabricCATx.go │ │ │ │ │ ├── sqlite.go │ │ │ │ │ ├── sqlite_suite_test.go │ │ │ │ │ └── sqlite_test.go │ │ │ │ ├── tx.go │ │ │ │ ├── tx_test.go │ │ │ │ └── util │ │ │ │ │ ├── util.go │ │ │ │ │ ├── util_suite_test.go │ │ │ │ │ └── util_test.go │ │ │ ├── idemix │ │ │ │ ├── config.go │ │ │ │ ├── creddbaccessor.go │ │ │ │ ├── cri.go │ │ │ │ ├── enroll.go │ │ │ │ ├── idemix_roles.go │ │ │ │ ├── idemixlib.go │ │ │ │ ├── issuer.go │ │ │ │ ├── issuercredential.go │ │ │ │ ├── mocks │ │ │ │ │ ├── Clock.go │ │ │ │ │ ├── FabricCATx.go │ │ │ │ │ ├── IssuerCredential.go │ │ │ │ │ ├── Lib.go │ │ │ │ │ ├── Result.go │ │ │ │ │ ├── RevocationAuthority.go │ │ │ │ │ ├── User.go │ │ │ │ │ ├── cred_db_accessor.go │ │ │ │ │ ├── fabric_cadb.go │ │ │ │ │ ├── my_issuer.go │ │ │ │ │ ├── nonce_manager.go │ │ │ │ │ └── server_request_ctx.go │ │ │ │ ├── nonce.go │ │ │ │ ├── revocationauthority.go │ │ │ │ └── revocationkey.go │ │ │ ├── ldap │ │ │ │ ├── client.go │ │ │ │ └── client_test.go │ │ │ ├── metrics │ │ │ │ └── metrics.go │ │ │ ├── operations │ │ │ │ ├── operations_suite_test.go │ │ │ │ ├── system.go │ │ │ │ ├── system_test.go │ │ │ │ ├── tls.go │ │ │ │ └── tls_test.go │ │ │ └── user │ │ │ │ ├── mocks │ │ │ │ ├── result.go │ │ │ │ ├── userDB.go │ │ │ │ └── userTx.go │ │ │ │ ├── user.go │ │ │ │ ├── user_suite_test.go │ │ │ │ └── user_test.go │ │ ├── server_benchmarks_test.go │ │ ├── server_whitebox_test.go │ │ ├── serveraffiliations.go │ │ ├── serveraffiliations_test.go │ │ ├── servercertificates.go │ │ ├── servercertificates_test.go │ │ ├── serverconfig.go │ │ ├── serverendpoint.go │ │ ├── serverendpoint_test.go │ │ ├── serverenroll.go │ │ ├── serverenroll_test.go │ │ ├── servergencrl.go │ │ ├── serveridemixcri.go │ │ ├── serveridemixenroll.go │ │ ├── serveridentities.go │ │ ├── serveridentities_test.go │ │ ├── serverinfo.go │ │ ├── serverinfo_test.go │ │ ├── serverregister.go │ │ ├── serverregister_test.go │ │ ├── serverrequestcontext.go │ │ ├── serverrevoke.go │ │ ├── serverrevoke_test.go │ │ ├── spi │ │ │ ├── affiliation.go │ │ │ └── affiliation_test.go │ │ ├── streamer │ │ │ └── jsonstreamer.go │ │ ├── test-util.go │ │ ├── tls │ │ │ ├── tls.go │ │ │ └── tls_test.go │ │ └── util.go │ ├── tools │ │ ├── go.mod │ │ ├── go.sum │ │ └── tools.go │ └── util │ │ ├── args.go │ │ ├── args_test.go │ │ ├── configurebccsp.go │ │ ├── configurebccsp_test.go │ │ ├── configurebccspnopkcs11.go │ │ ├── csp.go │ │ ├── flag.go │ │ ├── struct.go │ │ ├── testdata │ │ ├── csr.json │ │ ├── ec-key.pem │ │ ├── ec-key.ski │ │ ├── ec.pem │ │ ├── pkcs8eckey.pem │ │ ├── rsa-key.pem │ │ ├── test.pem │ │ ├── testviperunmarshal.yaml │ │ └── tls_server-cert.pem │ │ ├── util.go │ │ └── util_test.go │ └── fabric │ ├── bccsp │ ├── aesopts.go │ ├── bccsp.go │ ├── ecdsaopts.go │ ├── hashopts.go │ ├── keystore.go │ ├── opts.go │ ├── signer │ │ └── signer.go │ └── utils │ │ └── ecdsa.go │ ├── common │ ├── capabilities │ │ ├── application.go │ │ ├── capabilities.go │ │ ├── channel.go │ │ └── orderer.go │ ├── channelconfig │ │ ├── acls.go │ │ ├── api.go │ │ ├── application.go │ │ ├── applicationorg.go │ │ ├── bundle.go │ │ ├── channel.go │ │ ├── consortium.go │ │ ├── consortiums.go │ │ ├── msp.go │ │ ├── orderer.go │ │ ├── organization.go │ │ ├── standardvalues.go │ │ └── utils.go │ ├── configtx │ │ └── configtx.go │ ├── genesis │ │ └── genesis.go │ ├── metrics │ │ ├── disabled │ │ │ └── provider.go │ │ ├── internal │ │ │ └── namer │ │ │ │ └── namer.go │ │ ├── prometheus │ │ │ └── provider.go │ │ ├── provider.go │ │ └── statsd │ │ │ ├── goruntime │ │ │ ├── collector.go │ │ │ └── metrics.go │ │ │ └── provider.go │ ├── policies │ │ ├── implicitmetaparser.go │ │ ├── policy.go │ │ └── util.go │ ├── policydsl │ │ ├── policydsl_builder.go │ │ └── policyparser.go │ └── util │ │ └── utils.go │ ├── msp │ ├── cache │ │ ├── cache.go │ │ └── second_chance.go │ ├── cert.go │ ├── configbuilder.go │ ├── factory.go │ ├── identities.go │ ├── msp.go │ ├── mspimpl.go │ ├── mspimplsetup.go │ ├── mspimplvalidate.go │ └── mspmgrimpl.go │ ├── protoutil │ ├── blockutils.go │ ├── commonutils.go │ ├── configtxutils.go │ ├── proputils.go │ ├── signeddata.go │ ├── txutils.go │ └── unmarshalers.go │ ├── sdkinternal │ ├── configtxgen │ │ ├── encoder │ │ │ └── encoder.go │ │ └── genesisconfig │ │ │ └── config.go │ ├── configtxlator │ │ └── update │ │ │ └── update.go │ └── pkg │ │ ├── comm │ │ └── config.go │ │ ├── identity │ │ └── identity.go │ │ └── txflags │ │ └── validation_flags.go │ └── sdkpatch │ ├── cachebridge │ └── cache.go │ ├── cryptosuitebridge │ └── cryptosuitebridge.go │ ├── keyutil │ └── keys.go │ └── logbridge │ ├── httpadmin │ └── spec.go │ └── logbridge.go ├── k8s ├── .gitkeep ├── boilerplate.go.txt └── update-codegen.sh ├── kind-config.yaml ├── kubectl-hlf ├── README.md ├── cmd │ ├── ca │ │ ├── ca.go │ │ ├── create.go │ │ ├── delete.go │ │ ├── enroll.go │ │ ├── register.go │ │ └── revoke.go │ ├── chaincode │ │ ├── approve.go │ │ ├── calculatepackageid.go │ │ ├── chaincode.go │ │ ├── checkcommitreadiness.go │ │ ├── commit.go │ │ ├── getlatest.go │ │ ├── getnext.go │ │ ├── install.go │ │ ├── invoke.go │ │ ├── query.go │ │ ├── queryapproved.go │ │ ├── querycommitted.go │ │ └── queryinstalled.go │ ├── chaincodecrd │ │ ├── approve.go │ │ ├── chaincodecrd.go │ │ ├── commit.go │ │ └── install.go │ ├── channel │ │ ├── addanchorpeer.go │ │ ├── addorg.go │ │ ├── channel.go │ │ ├── consenter │ │ │ ├── add.go │ │ │ ├── consenter.go │ │ │ ├── remove.go │ │ │ └── replace.go │ │ ├── create.go │ │ ├── delanchorpeer.go │ │ ├── generate.go │ │ ├── inspect.go │ │ ├── join.go │ │ ├── ordorg │ │ │ ├── add.go │ │ │ ├── ordorg.go │ │ │ └── remove.go │ │ ├── signupdate.go │ │ ├── top.go │ │ └── update.go │ ├── channelcrd │ │ ├── channelcrd.go │ │ ├── follower │ │ │ ├── create.go │ │ │ ├── delete.go │ │ │ ├── follower.go │ │ │ └── update.go │ │ └── mainchannel │ │ │ ├── create.go │ │ │ ├── delete.go │ │ │ ├── mainchannel.go │ │ │ └── update.go │ ├── console │ │ ├── console.go │ │ ├── create.go │ │ ├── delete.go │ │ └── update.go │ ├── externalchaincode │ │ ├── create.go │ │ ├── delete.go │ │ ├── externalchaincode.go │ │ ├── sync.go │ │ └── update.go │ ├── fop │ │ ├── export │ │ │ ├── ca.go │ │ │ ├── export.go │ │ │ ├── orderer.go │ │ │ ├── org.go │ │ │ ├── peer.go │ │ │ └── utils.go │ │ └── fop.go │ ├── helpers │ │ ├── channel.go │ │ ├── constants.go │ │ ├── helpers.go │ │ ├── hlf.go │ │ ├── hlfLogger.go │ │ ├── mappers.go │ │ ├── marshall.go │ │ └── osnadmin │ │ │ ├── httpclient.go │ │ │ ├── join.go │ │ │ ├── list.go │ │ │ ├── remove.go │ │ │ └── types.go │ ├── identity │ │ ├── create.go │ │ ├── delete.go │ │ ├── identity.go │ │ └── update.go │ ├── inspect │ │ └── inspect.go │ ├── kubectl-hlf.go │ ├── networkconfig │ │ ├── create.go │ │ ├── delete.go │ │ ├── export.go │ │ ├── networkconfig.go │ │ ├── refresh.go │ │ └── update.go │ ├── operatorapi │ │ ├── create.go │ │ ├── delete.go │ │ ├── operatorapi.go │ │ └── update.go │ ├── operatorui │ │ ├── create.go │ │ ├── delete.go │ │ ├── operatorui.go │ │ └── update.go │ ├── ordnode │ │ ├── create.go │ │ ├── delete.go │ │ ├── join.go │ │ ├── ordnode.go │ │ ├── removechannel.go │ │ ├── renew.go │ │ ├── update.go │ │ └── upgrade.go │ ├── org │ │ ├── inspect.go │ │ └── org.go │ ├── peer │ │ ├── create.go │ │ ├── delete.go │ │ ├── peer.go │ │ ├── renew.go │ │ ├── update.go │ │ └── upgrade.go │ └── utils │ │ ├── addUser.go │ │ └── utils.go └── main.go ├── main.go ├── pkg ├── apis │ └── hlf.kungfusoftware.es │ │ ├── register.go │ │ └── v1alpha1 │ │ ├── doc.go │ │ ├── hlf_types.go │ │ ├── register.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.defaults.go ├── client │ ├── applyconfiguration │ │ ├── hlf.kungfusoftware.es │ │ │ └── v1alpha1 │ │ │ │ ├── addressoverride.go │ │ │ │ ├── applicationcapabilities.go │ │ │ │ ├── catls.go │ │ │ │ ├── chaincodepackage.go │ │ │ │ ├── chaincodepackagetls.go │ │ │ │ ├── channelcapabilities.go │ │ │ │ ├── channelconfig.go │ │ │ │ ├── component.go │ │ │ │ ├── cors.go │ │ │ │ ├── csr.go │ │ │ │ ├── enrollment.go │ │ │ │ ├── externalbuilder.go │ │ │ │ ├── externalcertificate.go │ │ │ │ ├── fabricca.go │ │ │ │ ├── fabriccaaffiliation.go │ │ │ │ ├── fabriccabccsp.go │ │ │ │ ├── fabriccabccspsw.go │ │ │ │ ├── fabriccacfg.go │ │ │ │ ├── fabriccacfgaffilitions.go │ │ │ │ ├── fabriccacfgidentities.go │ │ │ │ ├── fabriccacrl.go │ │ │ │ ├── fabriccacrypto.go │ │ │ │ ├── fabriccacsr.go │ │ │ │ ├── fabriccacsrca.go │ │ │ │ ├── fabriccadatabase.go │ │ │ │ ├── fabriccaidentity.go │ │ │ │ ├── fabriccaidentityattrs.go │ │ │ │ ├── fabriccaintermediate.go │ │ │ │ ├── fabriccaintermediateparentserver.go │ │ │ │ ├── fabriccaitemconf.go │ │ │ │ ├── fabriccametrics.go │ │ │ │ ├── fabriccametricsstatsd.go │ │ │ │ ├── fabriccanames.go │ │ │ │ ├── fabriccaregistry.go │ │ │ │ ├── fabriccasigning.go │ │ │ │ ├── fabriccasigningdefault.go │ │ │ │ ├── fabriccasigningprofiles.go │ │ │ │ ├── fabriccasigningsignprofile.go │ │ │ │ ├── fabriccasigningsignprofileconstraint.go │ │ │ │ ├── fabriccasigningtlsprofile.go │ │ │ │ ├── fabriccaspec.go │ │ │ │ ├── fabriccaspecservice.go │ │ │ │ ├── fabriccastatus.go │ │ │ │ ├── fabriccasubject.go │ │ │ │ ├── fabriccatlsconf.go │ │ │ │ ├── fabricchaincode.go │ │ │ │ ├── fabricchaincodeapprove.go │ │ │ │ ├── fabricchaincodeapprovespec.go │ │ │ │ ├── fabricchaincodeapprovestatus.go │ │ │ │ ├── fabricchaincodecommit.go │ │ │ │ ├── fabricchaincodecommitspec.go │ │ │ │ ├── fabricchaincodecommitstatus.go │ │ │ │ ├── fabricchaincodeinstall.go │ │ │ │ ├── fabricchaincodeinstallspec.go │ │ │ │ ├── fabricchaincodeinstallstatus.go │ │ │ │ ├── fabricchaincodespec.go │ │ │ │ ├── fabricchaincodestatus.go │ │ │ │ ├── fabricchaincodetemplate.go │ │ │ │ ├── fabricchaincodetemplateref.go │ │ │ │ ├── fabricchaincodetemplatespec.go │ │ │ │ ├── fabricchaincodetemplatestatus.go │ │ │ │ ├── fabricexplorer.go │ │ │ │ ├── fabricexplorerspec.go │ │ │ │ ├── fabricexplorerstatus.go │ │ │ │ ├── fabricfollowerchannel.go │ │ │ │ ├── fabricfollowerchannelanchorpeer.go │ │ │ │ ├── fabricfollowerchannelexternalpeer.go │ │ │ │ ├── fabricfollowerchannelorderer.go │ │ │ │ ├── fabricfollowerchannelpeer.go │ │ │ │ ├── fabricfollowerchannelspec.go │ │ │ │ ├── fabricfollowerchannelstatus.go │ │ │ │ ├── fabricfsserver.go │ │ │ │ ├── fabricgatewayapi.go │ │ │ │ ├── fabricidentity.go │ │ │ │ ├── fabricidentityattributerequest.go │ │ │ │ ├── fabricidentityattributes.go │ │ │ │ ├── fabricidentityregister.go │ │ │ │ ├── fabricidentityspec.go │ │ │ │ ├── fabricidentitystatus.go │ │ │ │ ├── fabricistio.go │ │ │ │ ├── fabricmainchannel.go │ │ │ │ ├── fabricmainchanneladminordererorganizationspec.go │ │ │ │ ├── fabricmainchanneladminpeerorganizationspec.go │ │ │ │ ├── fabricmainchannelapplicationconfig.go │ │ │ │ ├── fabricmainchannelconfig.go │ │ │ │ ├── fabricmainchannelconsenter.go │ │ │ │ ├── fabricmainchannelconsenteritem.go │ │ │ │ ├── fabricmainchanneletcdraft.go │ │ │ │ ├── fabricmainchanneletcdraftoptions.go │ │ │ │ ├── fabricmainchannelexternalorderernode.go │ │ │ │ ├── fabricmainchannelexternalordererorganization.go │ │ │ │ ├── fabricmainchannelexternalpeerorganization.go │ │ │ │ ├── fabricmainchannelidentity.go │ │ │ │ ├── fabricmainchannelordererbatchsize.go │ │ │ │ ├── fabricmainchannelordererconfig.go │ │ │ │ ├── fabricmainchannelorderernode.go │ │ │ │ ├── fabricmainchannelordererorganization.go │ │ │ │ ├── fabricmainchannelpeerorganization.go │ │ │ │ ├── fabricmainchannelpoliciesconfig.go │ │ │ │ ├── fabricmainchannelsmartbft.go │ │ │ │ ├── fabricmainchannelspec.go │ │ │ │ ├── fabricmainchannelstatus.go │ │ │ │ ├── fabricnetworkconfig.go │ │ │ │ ├── fabricnetworkconfigca.go │ │ │ │ ├── fabricnetworkconfigexternalorderer.go │ │ │ │ ├── fabricnetworkconfigexternalpeer.go │ │ │ │ ├── fabricnetworkconfigidentity.go │ │ │ │ ├── fabricnetworkconfigorganization.go │ │ │ │ ├── fabricnetworkconfigorgpeer.go │ │ │ │ ├── fabricnetworkconfigspec.go │ │ │ │ ├── fabricnetworkconfigstatus.go │ │ │ │ ├── fabricoperationsconsole.go │ │ │ │ ├── fabricoperationsconsoleauth.go │ │ │ │ ├── fabricoperationsconsolecouchdb.go │ │ │ │ ├── fabricoperationsconsolespec.go │ │ │ │ ├── fabricoperationsconsolestatus.go │ │ │ │ ├── fabricoperatorapi.go │ │ │ │ ├── fabricoperatorapiauth.go │ │ │ │ ├── fabricoperatorapihlfconfig.go │ │ │ │ ├── fabricoperatorapinetworkconfig.go │ │ │ │ ├── fabricoperatorapispec.go │ │ │ │ ├── fabricoperatorapistatus.go │ │ │ │ ├── fabricoperatorui.go │ │ │ │ ├── fabricoperatoruiauth.go │ │ │ │ ├── fabricoperatoruispec.go │ │ │ │ ├── fabricoperatoruistatus.go │ │ │ │ ├── fabricordererexternalref.go │ │ │ │ ├── fabricordererinternalref.go │ │ │ │ ├── fabricorderernode.go │ │ │ │ ├── fabricorderernodespec.go │ │ │ │ ├── fabricorderernodestatus.go │ │ │ │ ├── fabricorderingservice.go │ │ │ │ ├── fabricorderingservicespec.go │ │ │ │ ├── fabricorderingservicestatus.go │ │ │ │ ├── fabricpeer.go │ │ │ │ ├── fabricpeercouchdb.go │ │ │ │ ├── fabricpeercouchdbexporter.go │ │ │ │ ├── fabricpeerdiscovery.go │ │ │ │ ├── fabricpeerexternalcouchdb.go │ │ │ │ ├── fabricpeerexternalref.go │ │ │ │ ├── fabricpeerinternalref.go │ │ │ │ ├── fabricpeerlogging.go │ │ │ │ ├── fabricpeerresources.go │ │ │ │ ├── fabricpeerspec.go │ │ │ │ ├── fabricpeerspecgossip.go │ │ │ │ ├── fabricpeerstatus.go │ │ │ │ ├── fabricpeerstorage.go │ │ │ │ ├── fabrictraefik.go │ │ │ │ ├── fabrictraefikmiddleware.go │ │ │ │ ├── failedpeer.go │ │ │ │ ├── grpcproxy.go │ │ │ │ ├── hlfidentity.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingresshost.go │ │ │ │ ├── ingresspath.go │ │ │ │ ├── installedpeer.go │ │ │ │ ├── orderercapabilities.go │ │ │ │ ├── ordererenrollment.go │ │ │ │ ├── orderernode.go │ │ │ │ ├── orderernodeenrollment.go │ │ │ │ ├── orderernodeenrollmenttls.go │ │ │ │ ├── orderernodeservice.go │ │ │ │ ├── ordererservice.go │ │ │ │ ├── orderersystemchannel.go │ │ │ │ ├── peerservice.go │ │ │ │ ├── privatedatacollection.go │ │ │ │ ├── privatedatacollectionendorsementpolicy.go │ │ │ │ ├── secret.go │ │ │ │ ├── secretref.go │ │ │ │ ├── secretrefnskey.go │ │ │ │ ├── servicemonitor.go │ │ │ │ ├── storage.go │ │ │ │ └── tls.go │ │ ├── internal │ │ │ └── internal.go │ │ └── utils.go │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── hlf.kungfusoftware.es │ │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── fabricca.go │ │ │ ├── fabricchaincode.go │ │ │ ├── fabricchaincodeapprove.go │ │ │ ├── fabricchaincodecommit.go │ │ │ ├── fabricchaincodeinstall.go │ │ │ ├── fabricchaincodetemplate.go │ │ │ ├── fabricexplorer.go │ │ │ ├── fabricfollowerchannel.go │ │ │ ├── fabricidentity.go │ │ │ ├── fabricmainchannel.go │ │ │ ├── fabricnetworkconfig.go │ │ │ ├── fabricoperationsconsole.go │ │ │ ├── fabricoperatorapi.go │ │ │ ├── fabricoperatorui.go │ │ │ ├── fabricorderernode.go │ │ │ ├── fabricorderingservice.go │ │ │ ├── fabricpeer.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_fabricca.go │ │ │ ├── fake_fabricchaincode.go │ │ │ ├── fake_fabricchaincodeapprove.go │ │ │ ├── fake_fabricchaincodecommit.go │ │ │ ├── fake_fabricchaincodeinstall.go │ │ │ ├── fake_fabricchaincodetemplate.go │ │ │ ├── fake_fabricexplorer.go │ │ │ ├── fake_fabricfollowerchannel.go │ │ │ ├── fake_fabricidentity.go │ │ │ ├── fake_fabricmainchannel.go │ │ │ ├── fake_fabricnetworkconfig.go │ │ │ ├── fake_fabricoperationsconsole.go │ │ │ ├── fake_fabricoperatorapi.go │ │ │ ├── fake_fabricoperatorui.go │ │ │ ├── fake_fabricorderernode.go │ │ │ ├── fake_fabricorderingservice.go │ │ │ ├── fake_fabricpeer.go │ │ │ └── fake_hlf.kungfusoftware.es_client.go │ │ │ ├── generated_expansion.go │ │ │ └── hlf.kungfusoftware.es_client.go │ ├── informers │ │ └── externalversions │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ ├── hlf.kungfusoftware.es │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ │ ├── fabricca.go │ │ │ │ ├── fabricchaincode.go │ │ │ │ ├── fabricchaincodeapprove.go │ │ │ │ ├── fabricchaincodecommit.go │ │ │ │ ├── fabricchaincodeinstall.go │ │ │ │ ├── fabricchaincodetemplate.go │ │ │ │ ├── fabricexplorer.go │ │ │ │ ├── fabricfollowerchannel.go │ │ │ │ ├── fabricidentity.go │ │ │ │ ├── fabricmainchannel.go │ │ │ │ ├── fabricnetworkconfig.go │ │ │ │ ├── fabricoperationsconsole.go │ │ │ │ ├── fabricoperatorapi.go │ │ │ │ ├── fabricoperatorui.go │ │ │ │ ├── fabricorderernode.go │ │ │ │ ├── fabricorderingservice.go │ │ │ │ ├── fabricpeer.go │ │ │ │ └── interface.go │ │ │ └── internalinterfaces │ │ │ └── factory_interfaces.go │ └── listers │ │ └── hlf.kungfusoftware.es │ │ └── v1alpha1 │ │ ├── expansion_generated.go │ │ ├── fabricca.go │ │ ├── fabricchaincode.go │ │ ├── fabricchaincodeapprove.go │ │ ├── fabricchaincodecommit.go │ │ ├── fabricchaincodeinstall.go │ │ ├── fabricchaincodetemplate.go │ │ ├── fabricexplorer.go │ │ ├── fabricfollowerchannel.go │ │ ├── fabricidentity.go │ │ ├── fabricmainchannel.go │ │ ├── fabricnetworkconfig.go │ │ ├── fabricoperationsconsole.go │ │ ├── fabricoperatorapi.go │ │ ├── fabricoperatorui.go │ │ ├── fabricorderernode.go │ │ ├── fabricorderingservice.go │ │ └── fabricpeer.go ├── nc │ └── nc.go └── status │ └── conditions.go ├── scripts ├── .gitignore ├── README.md ├── bun.lockb ├── index.ts ├── migrate-channel-raft-bft.ts ├── package.json └── tsconfig.json ├── tmp ├── ch-install-approve.yaml ├── ch-install-commit.yaml └── ch-install-crd.yaml ├── tools.Dockerfile ├── tools.go └── website-docs ├── .gitignore ├── README.md ├── babel.config.js ├── docs ├── chaincode-deployment │ ├── _category_.json │ ├── architecture.md │ ├── external-chaincode-as-a-service.md │ ├── getting-started.md │ ├── install-crd.md │ └── k8s-builder.md ├── chaincode-development │ ├── _category_.json │ ├── architecture.md │ └── getting-started.md ├── channel-management │ ├── _category_.json │ ├── getting-started.md │ └── manage.md ├── couchdb │ ├── _category_.json │ ├── custom-image.md │ └── external-couchdb.md ├── gateway-api │ ├── _category_.json │ ├── getting-started.md │ ├── implementation.md │ └── introduction.md ├── grpc-proxy │ ├── _category_.json │ ├── enable-orderers.md │ └── enable-peers.md ├── identity-crd │ ├── _category_.json │ └── manage-identities.md ├── intro │ ├── getting-started-3-0.md │ ├── getting-started.md │ └── intro.md ├── kubectl-plugin │ ├── _category_.json │ ├── installation.md │ └── upgrade.md ├── operations-console │ ├── _category_.json │ ├── adding-cas.md │ ├── adding-orderers.md │ ├── adding-orgs.md │ ├── adding-peers.md │ └── getting-started.md ├── operator-guide │ ├── _category_.json │ ├── auto-renew-certificates.md │ ├── configuration.md │ ├── increase-resources.md │ ├── increase-storage.md │ ├── istio.md │ ├── migrate-network.md │ ├── monitoring.md │ ├── prometheus-metrics.md │ ├── renew-certificates.md │ ├── state-db.md │ └── upgrade-operator.md ├── operator-ui │ ├── _category_.json │ ├── deploy-operator-api.md │ ├── deploy-operator-ui.md │ ├── getting-started.md │ └── tour.md ├── security │ ├── _category_.json │ └── revoke-identities.md └── user-guide │ ├── _category_.json │ ├── create-channel.mdx │ ├── develop-chaincode-locally.md │ ├── enroll-users.md │ ├── hashicorp-vault.md │ ├── install-chaincode.mdx │ ├── network-config.md │ └── using-networkconfig.mdx ├── docusaurus.config.ts ├── package.json ├── sidebars.ts ├── src ├── css │ └── custom.css └── pages │ ├── index.js │ └── styles.module.css ├── static ├── .nojekyll └── img │ ├── Black logo - no background.svg │ ├── Color logo - no background.svg │ ├── Color logo with background.svg │ ├── White logo - no background.svg │ ├── add_ordering_service.png │ ├── arch_chaincode_dev.png │ ├── channel_top.png │ ├── external_chaincode_as_a_service.png │ ├── favicon.ico │ ├── favicon.png │ ├── final_add_ca.png │ ├── hlf_operator_ui.png │ ├── img.png │ ├── img_1.png │ ├── img_2.png │ ├── img_3.png │ ├── img_4.png │ ├── img_5.png │ ├── img_6.png │ ├── img_7.png │ ├── img_8.png │ ├── import_ca_table.png │ ├── import_ord_service.png │ ├── istio_hlf.png │ ├── kubernetes_builder_chaincode.png │ ├── logo.svg │ ├── ngrok-tunnel.png │ ├── ordering_service_import.png │ ├── select_json_ordering_service.png │ ├── state-db-hlf-docs.png │ ├── undraw_docusaurus_mountain.svg │ ├── undraw_docusaurus_react.svg │ └── undraw_docusaurus_tree.svg └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | .idea 2 | bin 3 | website-docs 4 | dist 5 | .git 6 | fixtures -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/.github/ISSUE_TEMPLATE/bug-report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/.github/ISSUE_TEMPLATE/config.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/.github/ISSUE_TEMPLATE/enhancement.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/kind-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/.github/kind-config.yaml -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/workflows/goreleaser-beta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/.github/workflows/goreleaser-beta.yml -------------------------------------------------------------------------------- /.github/workflows/goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/.github/workflows/goreleaser.yml -------------------------------------------------------------------------------- /.github/workflows/release_charts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/.github/workflows/release_charts.yml -------------------------------------------------------------------------------- /.github/workflows/release_web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/.github/workflows/release_web.yml -------------------------------------------------------------------------------- /.github/workflows/test-kubectl-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/.github/workflows/test-kubectl-plugin.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/.gitignore -------------------------------------------------------------------------------- /.go-version: -------------------------------------------------------------------------------- 1 | 1.23.1 2 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.krew.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/.krew.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/CREDITS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/Makefile -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/README.md -------------------------------------------------------------------------------- /analytics/analytics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/analytics/analytics.go -------------------------------------------------------------------------------- /chart/README.md: -------------------------------------------------------------------------------- 1 | # HLF-Operator Helm chart 2 | 3 | -------------------------------------------------------------------------------- /chart/hlf-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/chart/hlf-operator/.helmignore -------------------------------------------------------------------------------- /chart/hlf-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/chart/hlf-operator/Chart.yaml -------------------------------------------------------------------------------- /chart/hlf-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/chart/hlf-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /chart/hlf-operator/templates/crds/hlf.kungfusoftware.es_fabriccas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/chart/hlf-operator/templates/crds/hlf.kungfusoftware.es_fabriccas.yaml -------------------------------------------------------------------------------- /chart/hlf-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/chart/hlf-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /chart/hlf-operator/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/chart/hlf-operator/templates/rbac.yaml -------------------------------------------------------------------------------- /chart/hlf-operator/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/chart/hlf-operator/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /chart/hlf-operator/templates/svc-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/chart/hlf-operator/templates/svc-metrics.yaml -------------------------------------------------------------------------------- /chart/hlf-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/chart/hlf-operator/values.yaml -------------------------------------------------------------------------------- /charts/fabric-operations-console/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/fabric-operations-console/Chart.yaml -------------------------------------------------------------------------------- /charts/fabric-operations-console/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/fabric-operations-console/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/fabric-operations-console/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/fabric-operations-console/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/fabric-operations-console/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/fabric-operations-console/templates/config.yaml -------------------------------------------------------------------------------- /charts/fabric-operations-console/templates/deployment-couchdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/fabric-operations-console/templates/deployment-couchdb.yaml -------------------------------------------------------------------------------- /charts/fabric-operations-console/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/fabric-operations-console/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/fabric-operations-console/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/fabric-operations-console/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/fabric-operations-console/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/fabric-operations-console/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/fabric-operations-console/templates/pvc-couchdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/fabric-operations-console/templates/pvc-couchdb.yaml -------------------------------------------------------------------------------- /charts/fabric-operations-console/templates/secret--couchdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/fabric-operations-console/templates/secret--couchdb.yaml -------------------------------------------------------------------------------- /charts/fabric-operations-console/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/fabric-operations-console/templates/secret.yaml -------------------------------------------------------------------------------- /charts/fabric-operations-console/templates/service--couchdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/fabric-operations-console/templates/service--couchdb.yaml -------------------------------------------------------------------------------- /charts/fabric-operations-console/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/fabric-operations-console/templates/service.yaml -------------------------------------------------------------------------------- /charts/fabric-operations-console/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/fabric-operations-console/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/fabric-operations-console/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/fabric-operations-console/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/fabric-operations-console/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/fabric-operations-console/values.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/.helmignore -------------------------------------------------------------------------------- /charts/hlf-ca/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/Chart.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/hlf-ca/templates/configmap--ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/templates/configmap--ca.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/templates/configmap--config-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/templates/configmap--config-tls.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/templates/configmap--config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/templates/configmap--config.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/templates/istio-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/templates/istio-gateway.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/templates/secret--ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/templates/secret--ca.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/templates/secret--msp-cryptomaterial.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/templates/secret--msp-cryptomaterial.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/templates/secret--msp-tls-cryptomaterial.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/templates/secret--msp-tls-cryptomaterial.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/templates/secret--tls-cryptomaterial.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/templates/secret--tls-cryptomaterial.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/templates/service.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/templates/tls-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/templates/tls-route.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/templates/traefikroute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/templates/traefikroute.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/templates/virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/templates/virtualservice.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/tests/README.md -------------------------------------------------------------------------------- /charts/hlf-ca/tests/values/intermediate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/tests/values/intermediate.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/tests/values/root.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/tests/values/root.yaml -------------------------------------------------------------------------------- /charts/hlf-ca/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ca/values.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-api/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-api/.helmignore -------------------------------------------------------------------------------- /charts/hlf-operator-api/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-api/Chart.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-api/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-api/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/hlf-operator-api/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-api/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/hlf-operator-api/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-api/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-api/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-api/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-api/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-api/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-api/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-api/templates/rbac.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-api/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-api/templates/service.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-api/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-api/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-api/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-api/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-api/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-api/values.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-ui/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-ui/.helmignore -------------------------------------------------------------------------------- /charts/hlf-operator-ui/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-ui/Chart.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-ui/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-ui/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/hlf-operator-ui/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-ui/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/hlf-operator-ui/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-ui/templates/config.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-ui/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-ui/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-ui/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-ui/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-ui/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-ui/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-ui/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-ui/templates/service.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-ui/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-ui/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-ui/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-ui/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/hlf-operator-ui/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-operator-ui/values.yaml -------------------------------------------------------------------------------- /charts/hlf-ord/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ord/.helmignore -------------------------------------------------------------------------------- /charts/hlf-ord/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ord/Chart.yaml -------------------------------------------------------------------------------- /charts/hlf-ord/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ord/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/hlf-ord/templates/hlf_ordnode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ord/templates/hlf_ordnode.yaml -------------------------------------------------------------------------------- /charts/hlf-ord/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ord/values.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/.helmignore -------------------------------------------------------------------------------- /charts/hlf-ordnode/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/Chart.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/config-ou.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/config-ou.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/configmap--ord--core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/configmap--ord--core.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/configmap--ord.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/configmap--ord.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/istio-gateway-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/istio-gateway-admin.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/istio-gateway-proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/istio-gateway-proxy.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/istio-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/istio-gateway.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/istio-virtualservice-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/istio-virtualservice-admin.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/istio-virtualservice-proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/istio-virtualservice-proxy.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/istio-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/istio-virtualservice.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/secret--orderer0-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/secret--orderer0-admin.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/secret--orderer0-idcert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/secret--orderer0-idcert.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/secret--orderer0-idkey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/secret--orderer0-idkey.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/secret--orderer0-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/secret--orderer0-tls.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/secret--ordererorg-cacert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/secret--ordererorg-cacert.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/secret--ordererorg-tlsrootcert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/secret--ordererorg-tlsrootcert.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/secret--peerorg-tlsrootcert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/secret--peerorg-tlsrootcert.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/secret--tx-genesis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/secret--tx-genesis.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/service.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/tlsroute-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/tlsroute-admin.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/tlsroute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/tlsroute.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/traefikroute-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/traefikroute-admin.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/templates/traefikroute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/templates/traefikroute.yaml -------------------------------------------------------------------------------- /charts/hlf-ordnode/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-ordnode/values.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/.helmignore -------------------------------------------------------------------------------- /charts/hlf-peer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/Chart.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/hlf-peer/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/clusterrole.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/config-ou.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/config-ou.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/configmap--peer--core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/configmap--peer--core.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/configmap--peer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/configmap--peer.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/istio-gateway-proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/istio-gateway-proxy.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/istio-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/istio-gateway.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/podmonitor.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/pvc-chaincode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/pvc-chaincode.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/pvc-couchdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/pvc-couchdb.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/secret--couchdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/secret--couchdb.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/secret--peer-idcert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/secret--peer-idcert.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/secret--peer-idkey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/secret--peer-idkey.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/secret--peer-ops-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/secret--peer-ops-tls.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/secret--peer-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/secret--peer-tls.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/secret--peerorg-cacert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/secret--peerorg-cacert.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/secret--peerorg-intcacert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/secret--peerorg-intcacert.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/secret--peerorg-tlsintcacert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/secret--peerorg-tlsintcacert.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/secret--peerorg-tlsrootcert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/secret--peerorg-tlsrootcert.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/secret--tlsclientrootcert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/secret--tlsclientrootcert.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/service-fs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/service-fs.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/service-grpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/service-grpc.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/tls-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/tls-route.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/traefikroute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/traefikroute.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/virtualservice-proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/virtualservice-proxy.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/templates/virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/templates/virtualservice.yaml -------------------------------------------------------------------------------- /charts/hlf-peer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/charts/hlf-peer/values.yaml -------------------------------------------------------------------------------- /config/certmanager/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/certmanager/certificate.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/certmanager/kustomization.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/certmanager/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/bases/hlf.kungfusoftware.es_fabriccas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/bases/hlf.kungfusoftware.es_fabriccas.yaml -------------------------------------------------------------------------------- /config/crd/bases/hlf.kungfusoftware.es_fabricchaincodeapproves.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/bases/hlf.kungfusoftware.es_fabricchaincodeapproves.yaml -------------------------------------------------------------------------------- /config/crd/bases/hlf.kungfusoftware.es_fabricchaincodecommits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/bases/hlf.kungfusoftware.es_fabricchaincodecommits.yaml -------------------------------------------------------------------------------- /config/crd/bases/hlf.kungfusoftware.es_fabricchaincodeinstalls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/bases/hlf.kungfusoftware.es_fabricchaincodeinstalls.yaml -------------------------------------------------------------------------------- /config/crd/bases/hlf.kungfusoftware.es_fabricchaincodes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/bases/hlf.kungfusoftware.es_fabricchaincodes.yaml -------------------------------------------------------------------------------- /config/crd/bases/hlf.kungfusoftware.es_fabricchaincodetemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/bases/hlf.kungfusoftware.es_fabricchaincodetemplates.yaml -------------------------------------------------------------------------------- /config/crd/bases/hlf.kungfusoftware.es_fabricexplorers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/bases/hlf.kungfusoftware.es_fabricexplorers.yaml -------------------------------------------------------------------------------- /config/crd/bases/hlf.kungfusoftware.es_fabricfollowerchannels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/bases/hlf.kungfusoftware.es_fabricfollowerchannels.yaml -------------------------------------------------------------------------------- /config/crd/bases/hlf.kungfusoftware.es_fabricidentities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/bases/hlf.kungfusoftware.es_fabricidentities.yaml -------------------------------------------------------------------------------- /config/crd/bases/hlf.kungfusoftware.es_fabricmainchannels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/bases/hlf.kungfusoftware.es_fabricmainchannels.yaml -------------------------------------------------------------------------------- /config/crd/bases/hlf.kungfusoftware.es_fabricnetworkconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/bases/hlf.kungfusoftware.es_fabricnetworkconfigs.yaml -------------------------------------------------------------------------------- /config/crd/bases/hlf.kungfusoftware.es_fabricoperationsconsoles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/bases/hlf.kungfusoftware.es_fabricoperationsconsoles.yaml -------------------------------------------------------------------------------- /config/crd/bases/hlf.kungfusoftware.es_fabricoperatorapis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/bases/hlf.kungfusoftware.es_fabricoperatorapis.yaml -------------------------------------------------------------------------------- /config/crd/bases/hlf.kungfusoftware.es_fabricoperatoruis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/bases/hlf.kungfusoftware.es_fabricoperatoruis.yaml -------------------------------------------------------------------------------- /config/crd/bases/hlf.kungfusoftware.es_fabricorderernodes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/bases/hlf.kungfusoftware.es_fabricorderernodes.yaml -------------------------------------------------------------------------------- /config/crd/bases/hlf.kungfusoftware.es_fabricorderingservices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/bases/hlf.kungfusoftware.es_fabricorderingservices.yaml -------------------------------------------------------------------------------- /config/crd/bases/hlf.kungfusoftware.es_fabricpeers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/bases/hlf.kungfusoftware.es_fabricpeers.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_memcacheds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/patches/cainjection_in_memcacheds.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_memcacheds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/crd/patches/webhook_in_memcacheds.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/default/manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_webhook_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/default/manager_webhook_patch.yaml -------------------------------------------------------------------------------- /config/default/webhookcainjection_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/default/webhookcainjection_patch.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_client_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/rbac/auth_proxy_client_clusterrole.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/memcached_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/rbac/memcached_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/memcached_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/rbac/memcached_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/samples/hlf_v1alpha1_fabricca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/samples/hlf_v1alpha1_fabricca.yaml -------------------------------------------------------------------------------- /config/samples/hlf_v1alpha1_fabricorderer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/samples/hlf_v1alpha1_fabricorderer.yaml -------------------------------------------------------------------------------- /config/samples/hlf_v1alpha1_fabricordererca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/samples/hlf_v1alpha1_fabricordererca.yaml -------------------------------------------------------------------------------- /config/samples/hlf_v1alpha1_fabricpeer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/samples/hlf_v1alpha1_fabricpeer.yaml -------------------------------------------------------------------------------- /config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /config/webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/webhook/kustomization.yaml -------------------------------------------------------------------------------- /config/webhook/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/webhook/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/webhook/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/config/webhook/service.yaml -------------------------------------------------------------------------------- /controllers/ca/ca_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/ca/ca_controller.go -------------------------------------------------------------------------------- /controllers/ca/ca_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/ca/ca_controller_test.go -------------------------------------------------------------------------------- /controllers/ca/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/ca/types.go -------------------------------------------------------------------------------- /controllers/certs/key_behavior_demo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/certs/key_behavior_demo_test.go -------------------------------------------------------------------------------- /controllers/certs/provision_certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/certs/provision_certs.go -------------------------------------------------------------------------------- /controllers/certs/provision_certs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/certs/provision_certs_test.go -------------------------------------------------------------------------------- /controllers/certs_vault/provision_certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/certs_vault/provision_certs.go -------------------------------------------------------------------------------- /controllers/certs_vault/provision_certs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/certs_vault/provision_certs_test.go -------------------------------------------------------------------------------- /controllers/chaincode/approve/chaincode_approve_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/chaincode/approve/chaincode_approve_controller.go -------------------------------------------------------------------------------- /controllers/chaincode/commit/chaincode_commit_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/chaincode/commit/chaincode_commit_controller.go -------------------------------------------------------------------------------- /controllers/chaincode/deploy/chaincode_deploy_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/chaincode/deploy/chaincode_deploy_controller.go -------------------------------------------------------------------------------- /controllers/chaincode/install/chaincode_install_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/chaincode/install/chaincode_install_controller.go -------------------------------------------------------------------------------- /controllers/console/console_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/console/console_controller.go -------------------------------------------------------------------------------- /controllers/console/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/console/types.go -------------------------------------------------------------------------------- /controllers/followerchannel/followerchannel_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/followerchannel/followerchannel_controller.go -------------------------------------------------------------------------------- /controllers/hlf_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/hlf_controller.go -------------------------------------------------------------------------------- /controllers/hlfmetrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/hlfmetrics/metrics.go -------------------------------------------------------------------------------- /controllers/identity/identity_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/identity/identity_controller.go -------------------------------------------------------------------------------- /controllers/identity/identity_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/identity/identity_controller_test.go -------------------------------------------------------------------------------- /controllers/mainchannel/mainchannel_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/mainchannel/mainchannel_controller.go -------------------------------------------------------------------------------- /controllers/networkconfig/networkconfig_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/networkconfig/networkconfig_controller.go -------------------------------------------------------------------------------- /controllers/networkconfig/networkconfig_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/networkconfig/networkconfig_controller_test.go -------------------------------------------------------------------------------- /controllers/operatorapi/operatorapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/operatorapi/operatorapi.go -------------------------------------------------------------------------------- /controllers/operatorapi/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/operatorapi/types.go -------------------------------------------------------------------------------- /controllers/operatorui/operatorui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/operatorui/operatorui.go -------------------------------------------------------------------------------- /controllers/operatorui/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/operatorui/types.go -------------------------------------------------------------------------------- /controllers/ordnode/ordnode_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/ordnode/ordnode_controller.go -------------------------------------------------------------------------------- /controllers/ordnode/ordnode_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/ordnode/ordnode_controller_test.go -------------------------------------------------------------------------------- /controllers/ordnode/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/ordnode/types.go -------------------------------------------------------------------------------- /controllers/ordservice/ordservice_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/ordservice/ordservice_controller.go -------------------------------------------------------------------------------- /controllers/ordservice/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/ordservice/types.go -------------------------------------------------------------------------------- /controllers/peer/peer_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/peer/peer_controller.go -------------------------------------------------------------------------------- /controllers/peer/peer_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/peer/peer_controller_test.go -------------------------------------------------------------------------------- /controllers/peer/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/peer/types.go -------------------------------------------------------------------------------- /controllers/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/suite_test.go -------------------------------------------------------------------------------- /controllers/tests/ca_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/tests/ca_controller_test.go -------------------------------------------------------------------------------- /controllers/tests/ord_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/tests/ord_controller_test.go -------------------------------------------------------------------------------- /controllers/tests/peer_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/tests/peer_controller_test.go -------------------------------------------------------------------------------- /controllers/tests/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/tests/suite_test.go -------------------------------------------------------------------------------- /controllers/tests/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/tests/utils.go -------------------------------------------------------------------------------- /controllers/testutils/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/testutils/channel.go -------------------------------------------------------------------------------- /controllers/testutils/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/testutils/genesis.go -------------------------------------------------------------------------------- /controllers/utils/crl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/utils/crl.go -------------------------------------------------------------------------------- /controllers/utils/lease.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/utils/lease.go -------------------------------------------------------------------------------- /controllers/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/controllers/utils/utils.go -------------------------------------------------------------------------------- /dashboards/ca-operations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/dashboards/ca-operations.json -------------------------------------------------------------------------------- /dashboards/ca-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/dashboards/ca-resources.json -------------------------------------------------------------------------------- /dashboards/chaincode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/dashboards/chaincode.json -------------------------------------------------------------------------------- /dashboards/chaincodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/dashboards/chaincodes.json -------------------------------------------------------------------------------- /dashboards/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/dashboards/channel.json -------------------------------------------------------------------------------- /dashboards/couchdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/dashboards/couchdb.json -------------------------------------------------------------------------------- /dashboards/hlf-operator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/dashboards/hlf-operator.json -------------------------------------------------------------------------------- /dashboards/transactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/dashboards/transactions.json -------------------------------------------------------------------------------- /docs/api/autogen/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/docs/api/autogen/config.json -------------------------------------------------------------------------------- /docs/api/autogen/templates/members.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/docs/api/autogen/templates/members.tpl -------------------------------------------------------------------------------- /docs/api/autogen/templates/pkg.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/docs/api/autogen/templates/pkg.tpl -------------------------------------------------------------------------------- /docs/api/autogen/templates/type.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/docs/api/autogen/templates/type.tpl -------------------------------------------------------------------------------- /docs/api/hlf.kungfusoftware.io.ref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/docs/api/hlf.kungfusoftware.io.ref.html -------------------------------------------------------------------------------- /docs/fabric-ca.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/docs/fabric-ca.md -------------------------------------------------------------------------------- /docs/fabric-orderer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/docs/fabric-orderer.md -------------------------------------------------------------------------------- /docs/fabric-peer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/docs/fabric-peer.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | # Introducing HLF Operator 2 | 3 | -------------------------------------------------------------------------------- /docs/reference/technical.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/reference/technical.md.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/external/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/external/.dockerignore -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/external/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/external/.gitignore -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/external/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/external/.vscode/launch.json -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/external/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/external/Dockerfile -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/external/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/external/README.md -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/external/chaincode.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/external/chaincode.env.example -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/external/fabcar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/external/fabcar.go -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/external/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/external/go.mod -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/external/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/external/go.sum -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/external/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/external/metadata.json -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/go/fabcar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/go/fabcar.go -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/go/go.mod -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/go/go.sum -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/java/.gitignore -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/java/README.md -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/java/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/java/build.gradle -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/java/config/checkstyle/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/java/config/checkstyle/checkstyle.xml -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/java/config/checkstyle/suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/java/config/checkstyle/suppressions.xml -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/java/gradlew -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/java/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/java/gradlew.bat -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/java/settings.gradle: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-License-Identifier: Apache-2.0 3 | */ 4 | 5 | rootProject.name = 'fabcar' 6 | -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/javascript/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/javascript/.editorconfig -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/javascript/.eslintignore: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | 5 | coverage 6 | -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/javascript/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/javascript/.eslintrc.js -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/javascript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/javascript/.gitignore -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/javascript/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/javascript/index.js -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/javascript/lib/fabcar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/javascript/lib/fabcar.js -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/javascript/package.json -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/typescript/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/typescript/.editorconfig -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/typescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/typescript/.gitignore -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/typescript/package.json -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/typescript/src/car.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/typescript/src/car.ts -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/typescript/src/fabcar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/typescript/src/fabcar.ts -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/typescript/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/typescript/src/index.ts -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/typescript/tsconfig.json -------------------------------------------------------------------------------- /fixtures/chaincodes/fabcar/typescript/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/chaincodes/fabcar/typescript/tslint.json -------------------------------------------------------------------------------- /fixtures/external-chaincode/asset-external/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/external-chaincode/asset-external/.dockerignore -------------------------------------------------------------------------------- /fixtures/external-chaincode/asset-external/.gitignore: -------------------------------------------------------------------------------- 1 | *.tar.gz 2 | *.tgz 3 | crypto/*.pem 4 | -------------------------------------------------------------------------------- /fixtures/external-chaincode/asset-external/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/external-chaincode/asset-external/.vscode/launch.json -------------------------------------------------------------------------------- /fixtures/external-chaincode/asset-external/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/external-chaincode/asset-external/Dockerfile -------------------------------------------------------------------------------- /fixtures/external-chaincode/asset-external/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/external-chaincode/asset-external/README.md -------------------------------------------------------------------------------- /fixtures/external-chaincode/asset-external/assetTransfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/external-chaincode/asset-external/assetTransfer.go -------------------------------------------------------------------------------- /fixtures/external-chaincode/asset-external/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/external-chaincode/asset-external/go.mod -------------------------------------------------------------------------------- /fixtures/external-chaincode/asset-external/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/external-chaincode/asset-external/go.sum -------------------------------------------------------------------------------- /fixtures/external-chaincode/asset-external/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/fixtures/external-chaincode/asset-external/metadata.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/go.sum -------------------------------------------------------------------------------- /hack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/hack/README.md -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/istio-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/hack/istio-operator.yaml -------------------------------------------------------------------------------- /hack/istio-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/hack/istio-operator/Chart.yaml -------------------------------------------------------------------------------- /hack/istio-operator/crds/crd-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/hack/istio-operator/crds/crd-operator.yaml -------------------------------------------------------------------------------- /hack/istio-operator/files/gen-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/hack/istio-operator/files/gen-operator.yaml -------------------------------------------------------------------------------- /hack/istio-operator/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/hack/istio-operator/templates/clusterrole.yaml -------------------------------------------------------------------------------- /hack/istio-operator/templates/clusterrole_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/hack/istio-operator/templates/clusterrole_binding.yaml -------------------------------------------------------------------------------- /hack/istio-operator/templates/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/hack/istio-operator/templates/crds.yaml -------------------------------------------------------------------------------- /hack/istio-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/hack/istio-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /hack/istio-operator/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/hack/istio-operator/templates/namespace.yaml -------------------------------------------------------------------------------- /hack/istio-operator/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/hack/istio-operator/templates/service.yaml -------------------------------------------------------------------------------- /hack/istio-operator/templates/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/hack/istio-operator/templates/service_account.yaml -------------------------------------------------------------------------------- /hack/istio-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/hack/istio-operator/values.yaml -------------------------------------------------------------------------------- /images/tools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/images/tools/Dockerfile -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/api/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/api/client.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/api/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/api/net.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/api/serverresponses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/api/serverresponses.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/attr/attribute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/attr/attribute.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/attr/attribute_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/attr/attribute_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/attrmgr/attrmgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/attrmgr/attrmgr.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/attrmgr/attrmgr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/attrmgr/attrmgr_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/ca.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/ca.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/ca_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/ca_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/caconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/caconfig.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/caerrors/servererror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/caerrors/servererror.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/capkcs11_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/capkcs11_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/certdbaccessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/certdbaccessor.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/certdbaccessor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/certdbaccessor_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/client.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/client_whitebox_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/client_whitebox_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/clientconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/clientconfig.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/common/idemix/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/common/idemix/common.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/common/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/common/log/log.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/common/log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/common/log/log_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/dbaccessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/dbaccessor.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/identity.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/identity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/identity_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/keyrequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/keyrequest.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/keyrequestnopkcs11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/keyrequestnopkcs11.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/metadata/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/metadata/version.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/metadata/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/metadata/version_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server/db/db.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server/db/db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server/db/db_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server/db/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server/db/metrics.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server/db/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server/db/metrics_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server/db/migrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server/db/migrator.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server/db/mocks/Result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server/db/mocks/Result.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server/db/mocks/SqlxDB.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server/db/mocks/SqlxDB.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server/db/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server/db/tx.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server/db/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server/db/tx_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server/db/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server/db/util/util.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server/idemix/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server/idemix/config.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server/idemix/cri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server/idemix/cri.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server/idemix/enroll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server/idemix/enroll.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server/idemix/issuer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server/idemix/issuer.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server/idemix/nonce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server/idemix/nonce.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server/ldap/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server/ldap/client.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server/user/user.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/server_whitebox_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/server_whitebox_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/serveraffiliations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/serveraffiliations.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/servercertificates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/servercertificates.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/serverconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/serverconfig.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/serverendpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/serverendpoint.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/serverendpoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/serverendpoint_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/serverenroll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/serverenroll.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/serverenroll_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/serverenroll_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/servergencrl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/servergencrl.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/serveridemixcri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/serveridemixcri.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/serveridemixenroll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/serveridemixenroll.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/serveridentities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/serveridentities.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/serverinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/serverinfo.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/serverinfo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/serverinfo_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/serverregister.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/serverregister.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/serverregister_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/serverregister_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/serverrequestcontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/serverrequestcontext.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/serverrevoke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/serverrevoke.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/serverrevoke_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/serverrevoke_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/spi/affiliation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/spi/affiliation.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/spi/affiliation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/spi/affiliation_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/test-util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/test-util.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/tls/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/tls/tls.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/tls/tls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/tls/tls_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/lib/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/lib/util.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/tools/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/tools/go.mod -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/tools/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/tools/go.sum -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/tools/tools.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/util/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/util/args.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/util/args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/util/args_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/util/configurebccsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/util/configurebccsp.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/util/configurebccsp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/util/configurebccsp_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/util/csp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/util/csp.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/util/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/util/flag.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/util/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/util/struct.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/util/testdata/csr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/util/testdata/csr.json -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/util/testdata/ec-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/util/testdata/ec-key.pem -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/util/testdata/ec-key.ski: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/util/testdata/ec-key.ski -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/util/testdata/ec.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/util/testdata/ec.pem -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/util/testdata/rsa-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/util/testdata/rsa-key.pem -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/util/testdata/test.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/util/testdata/test.pem -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/util/util.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric-ca/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric-ca/util/util_test.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/bccsp/aesopts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/bccsp/aesopts.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/bccsp/bccsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/bccsp/bccsp.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/bccsp/ecdsaopts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/bccsp/ecdsaopts.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/bccsp/hashopts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/bccsp/hashopts.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/bccsp/keystore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/bccsp/keystore.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/bccsp/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/bccsp/opts.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/bccsp/signer/signer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/bccsp/signer/signer.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/bccsp/utils/ecdsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/bccsp/utils/ecdsa.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/common/capabilities/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/common/capabilities/channel.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/common/capabilities/orderer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/common/capabilities/orderer.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/common/channelconfig/acls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/common/channelconfig/acls.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/common/channelconfig/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/common/channelconfig/api.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/common/channelconfig/bundle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/common/channelconfig/bundle.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/common/channelconfig/msp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/common/channelconfig/msp.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/common/channelconfig/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/common/channelconfig/utils.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/common/configtx/configtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/common/configtx/configtx.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/common/genesis/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/common/genesis/genesis.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/common/metrics/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/common/metrics/provider.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/common/policies/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/common/policies/policy.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/common/policies/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/common/policies/util.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/common/util/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/common/util/utils.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/msp/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/msp/cache/cache.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/msp/cache/second_chance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/msp/cache/second_chance.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/msp/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/msp/cert.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/msp/configbuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/msp/configbuilder.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/msp/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/msp/factory.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/msp/identities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/msp/identities.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/msp/msp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/msp/msp.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/msp/mspimpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/msp/mspimpl.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/msp/mspimplsetup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/msp/mspimplsetup.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/msp/mspimplvalidate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/msp/mspimplvalidate.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/msp/mspmgrimpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/msp/mspmgrimpl.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/protoutil/blockutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/protoutil/blockutils.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/protoutil/commonutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/protoutil/commonutils.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/protoutil/configtxutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/protoutil/configtxutils.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/protoutil/proputils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/protoutil/proputils.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/protoutil/signeddata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/protoutil/signeddata.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/protoutil/txutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/protoutil/txutils.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/protoutil/unmarshalers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/protoutil/unmarshalers.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/sdkinternal/pkg/comm/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/sdkinternal/pkg/comm/config.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/sdkpatch/cachebridge/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/sdkpatch/cachebridge/cache.go -------------------------------------------------------------------------------- /internal/github.com/hyperledger/fabric/sdkpatch/keyutil/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/internal/github.com/hyperledger/fabric/sdkpatch/keyutil/keys.go -------------------------------------------------------------------------------- /k8s/.gitkeep: -------------------------------------------------------------------------------- 1 | //keep this folder 2 | -------------------------------------------------------------------------------- /k8s/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/k8s/boilerplate.go.txt -------------------------------------------------------------------------------- /k8s/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/k8s/update-codegen.sh -------------------------------------------------------------------------------- /kind-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kind-config.yaml -------------------------------------------------------------------------------- /kubectl-hlf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/README.md -------------------------------------------------------------------------------- /kubectl-hlf/cmd/ca/ca.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/ca/ca.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/ca/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/ca/create.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/ca/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/ca/delete.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/ca/enroll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/ca/enroll.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/ca/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/ca/register.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/ca/revoke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/ca/revoke.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/chaincode/approve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/chaincode/approve.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/chaincode/calculatepackageid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/chaincode/calculatepackageid.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/chaincode/chaincode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/chaincode/chaincode.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/chaincode/checkcommitreadiness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/chaincode/checkcommitreadiness.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/chaincode/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/chaincode/commit.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/chaincode/getlatest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/chaincode/getlatest.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/chaincode/getnext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/chaincode/getnext.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/chaincode/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/chaincode/install.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/chaincode/invoke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/chaincode/invoke.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/chaincode/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/chaincode/query.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/chaincode/queryapproved.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/chaincode/queryapproved.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/chaincode/querycommitted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/chaincode/querycommitted.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/chaincode/queryinstalled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/chaincode/queryinstalled.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/chaincodecrd/approve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/chaincodecrd/approve.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/chaincodecrd/chaincodecrd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/chaincodecrd/chaincodecrd.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/chaincodecrd/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/chaincodecrd/commit.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/chaincodecrd/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/chaincodecrd/install.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/addanchorpeer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/addanchorpeer.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/addorg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/addorg.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/channel.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/consenter/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/consenter/add.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/consenter/consenter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/consenter/consenter.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/consenter/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/consenter/remove.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/consenter/replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/consenter/replace.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/create.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/delanchorpeer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/delanchorpeer.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/generate.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/inspect.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/join.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/ordorg/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/ordorg/add.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/ordorg/ordorg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/ordorg/ordorg.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/ordorg/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/ordorg/remove.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/signupdate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/signupdate.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/top.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/top.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channel/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channel/update.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channelcrd/channelcrd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channelcrd/channelcrd.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channelcrd/follower/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channelcrd/follower/create.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channelcrd/follower/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channelcrd/follower/delete.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channelcrd/follower/follower.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channelcrd/follower/follower.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channelcrd/follower/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channelcrd/follower/update.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channelcrd/mainchannel/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channelcrd/mainchannel/create.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channelcrd/mainchannel/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channelcrd/mainchannel/delete.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channelcrd/mainchannel/mainchannel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channelcrd/mainchannel/mainchannel.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/channelcrd/mainchannel/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/channelcrd/mainchannel/update.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/console/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/console/console.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/console/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/console/create.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/console/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/console/delete.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/console/update.go: -------------------------------------------------------------------------------- 1 | package console 2 | -------------------------------------------------------------------------------- /kubectl-hlf/cmd/externalchaincode/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/externalchaincode/create.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/externalchaincode/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/externalchaincode/delete.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/externalchaincode/externalchaincode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/externalchaincode/externalchaincode.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/externalchaincode/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/externalchaincode/sync.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/externalchaincode/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/externalchaincode/update.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/fop/export/ca.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/fop/export/ca.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/fop/export/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/fop/export/export.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/fop/export/orderer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/fop/export/orderer.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/fop/export/org.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/fop/export/org.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/fop/export/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/fop/export/peer.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/fop/export/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/fop/export/utils.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/fop/fop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/fop/fop.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/helpers/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/helpers/channel.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/helpers/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/helpers/constants.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/helpers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/helpers/helpers.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/helpers/hlf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/helpers/hlf.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/helpers/hlfLogger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/helpers/hlfLogger.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/helpers/mappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/helpers/mappers.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/helpers/marshall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/helpers/marshall.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/helpers/osnadmin/httpclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/helpers/osnadmin/httpclient.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/helpers/osnadmin/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/helpers/osnadmin/join.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/helpers/osnadmin/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/helpers/osnadmin/list.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/helpers/osnadmin/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/helpers/osnadmin/remove.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/helpers/osnadmin/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/helpers/osnadmin/types.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/identity/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/identity/create.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/identity/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/identity/delete.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/identity/identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/identity/identity.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/identity/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/identity/update.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/inspect/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/inspect/inspect.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/kubectl-hlf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/kubectl-hlf.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/networkconfig/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/networkconfig/create.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/networkconfig/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/networkconfig/delete.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/networkconfig/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/networkconfig/export.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/networkconfig/networkconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/networkconfig/networkconfig.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/networkconfig/refresh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/networkconfig/refresh.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/networkconfig/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/networkconfig/update.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/operatorapi/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/operatorapi/create.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/operatorapi/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/operatorapi/delete.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/operatorapi/operatorapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/operatorapi/operatorapi.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/operatorapi/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/operatorapi/update.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/operatorui/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/operatorui/create.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/operatorui/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/operatorui/delete.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/operatorui/operatorui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/operatorui/operatorui.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/operatorui/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/operatorui/update.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/ordnode/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/ordnode/create.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/ordnode/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/ordnode/delete.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/ordnode/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/ordnode/join.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/ordnode/ordnode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/ordnode/ordnode.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/ordnode/removechannel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/ordnode/removechannel.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/ordnode/renew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/ordnode/renew.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/ordnode/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/ordnode/update.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/ordnode/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/ordnode/upgrade.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/org/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/org/inspect.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/org/org.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/org/org.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/peer/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/peer/create.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/peer/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/peer/delete.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/peer/peer.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/peer/renew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/peer/renew.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/peer/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/peer/update.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/peer/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/peer/upgrade.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/utils/addUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/utils/addUser.go -------------------------------------------------------------------------------- /kubectl-hlf/cmd/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/cmd/utils/utils.go -------------------------------------------------------------------------------- /kubectl-hlf/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/kubectl-hlf/main.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/main.go -------------------------------------------------------------------------------- /pkg/apis/hlf.kungfusoftware.es/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/apis/hlf.kungfusoftware.es/register.go -------------------------------------------------------------------------------- /pkg/apis/hlf.kungfusoftware.es/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/apis/hlf.kungfusoftware.es/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/hlf.kungfusoftware.es/v1alpha1/hlf_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/apis/hlf.kungfusoftware.es/v1alpha1/hlf_types.go -------------------------------------------------------------------------------- /pkg/apis/hlf.kungfusoftware.es/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/apis/hlf.kungfusoftware.es/v1alpha1/register.go -------------------------------------------------------------------------------- /pkg/apis/hlf.kungfusoftware.es/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/apis/hlf.kungfusoftware.es/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/hlf.kungfusoftware.es/v1alpha1/zz_generated.defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/apis/hlf.kungfusoftware.es/v1alpha1/zz_generated.defaults.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/hlf.kungfusoftware.es/v1alpha1/catls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/applyconfiguration/hlf.kungfusoftware.es/v1alpha1/catls.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/hlf.kungfusoftware.es/v1alpha1/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/applyconfiguration/hlf.kungfusoftware.es/v1alpha1/cors.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/hlf.kungfusoftware.es/v1alpha1/csr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/applyconfiguration/hlf.kungfusoftware.es/v1alpha1/csr.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/hlf.kungfusoftware.es/v1alpha1/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/applyconfiguration/hlf.kungfusoftware.es/v1alpha1/tls.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/applyconfiguration/internal/internal.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/applyconfiguration/utils.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/clientset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/clientset/versioned/clientset.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/clientset_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/clientset/versioned/fake/clientset_generated.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/clientset/versioned/fake/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/clientset/versioned/fake/register.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/scheme/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/clientset/versioned/scheme/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/scheme/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/clientset/versioned/scheme/register.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/informers/externalversions/factory.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/informers/externalversions/generic.go -------------------------------------------------------------------------------- /pkg/client/listers/hlf.kungfusoftware.es/v1alpha1/fabricca.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/listers/hlf.kungfusoftware.es/v1alpha1/fabricca.go -------------------------------------------------------------------------------- /pkg/client/listers/hlf.kungfusoftware.es/v1alpha1/fabricchaincode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/listers/hlf.kungfusoftware.es/v1alpha1/fabricchaincode.go -------------------------------------------------------------------------------- /pkg/client/listers/hlf.kungfusoftware.es/v1alpha1/fabricexplorer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/listers/hlf.kungfusoftware.es/v1alpha1/fabricexplorer.go -------------------------------------------------------------------------------- /pkg/client/listers/hlf.kungfusoftware.es/v1alpha1/fabricidentity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/listers/hlf.kungfusoftware.es/v1alpha1/fabricidentity.go -------------------------------------------------------------------------------- /pkg/client/listers/hlf.kungfusoftware.es/v1alpha1/fabricoperatorui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/listers/hlf.kungfusoftware.es/v1alpha1/fabricoperatorui.go -------------------------------------------------------------------------------- /pkg/client/listers/hlf.kungfusoftware.es/v1alpha1/fabricpeer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/client/listers/hlf.kungfusoftware.es/v1alpha1/fabricpeer.go -------------------------------------------------------------------------------- /pkg/nc/nc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/nc/nc.go -------------------------------------------------------------------------------- /pkg/status/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/pkg/status/conditions.go -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/scripts/.gitignore -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/scripts/bun.lockb -------------------------------------------------------------------------------- /scripts/index.ts: -------------------------------------------------------------------------------- 1 | console.log("Hello via Bun!"); -------------------------------------------------------------------------------- /scripts/migrate-channel-raft-bft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/scripts/migrate-channel-raft-bft.ts -------------------------------------------------------------------------------- /scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/scripts/package.json -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /tmp/ch-install-approve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/tmp/ch-install-approve.yaml -------------------------------------------------------------------------------- /tmp/ch-install-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/tmp/ch-install-commit.yaml -------------------------------------------------------------------------------- /tmp/ch-install-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/tmp/ch-install-crd.yaml -------------------------------------------------------------------------------- /tools.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/tools.Dockerfile -------------------------------------------------------------------------------- /tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/tools.go -------------------------------------------------------------------------------- /website-docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/.gitignore -------------------------------------------------------------------------------- /website-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/README.md -------------------------------------------------------------------------------- /website-docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/babel.config.js -------------------------------------------------------------------------------- /website-docs/docs/chaincode-deployment/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Chaincode deployment" 3 | } -------------------------------------------------------------------------------- /website-docs/docs/chaincode-deployment/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/chaincode-deployment/architecture.md -------------------------------------------------------------------------------- /website-docs/docs/chaincode-deployment/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/chaincode-deployment/getting-started.md -------------------------------------------------------------------------------- /website-docs/docs/chaincode-deployment/install-crd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/chaincode-deployment/install-crd.md -------------------------------------------------------------------------------- /website-docs/docs/chaincode-deployment/k8s-builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/chaincode-deployment/k8s-builder.md -------------------------------------------------------------------------------- /website-docs/docs/chaincode-development/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Chaincode Development" 3 | } -------------------------------------------------------------------------------- /website-docs/docs/chaincode-development/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/chaincode-development/architecture.md -------------------------------------------------------------------------------- /website-docs/docs/chaincode-development/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/chaincode-development/getting-started.md -------------------------------------------------------------------------------- /website-docs/docs/channel-management/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Channel management" 3 | } -------------------------------------------------------------------------------- /website-docs/docs/channel-management/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/channel-management/getting-started.md -------------------------------------------------------------------------------- /website-docs/docs/channel-management/manage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/channel-management/manage.md -------------------------------------------------------------------------------- /website-docs/docs/couchdb/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CouchDB" 3 | } -------------------------------------------------------------------------------- /website-docs/docs/couchdb/custom-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/couchdb/custom-image.md -------------------------------------------------------------------------------- /website-docs/docs/couchdb/external-couchdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/couchdb/external-couchdb.md -------------------------------------------------------------------------------- /website-docs/docs/gateway-api/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gateway API" 3 | } -------------------------------------------------------------------------------- /website-docs/docs/gateway-api/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/gateway-api/getting-started.md -------------------------------------------------------------------------------- /website-docs/docs/gateway-api/implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/gateway-api/implementation.md -------------------------------------------------------------------------------- /website-docs/docs/gateway-api/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/gateway-api/introduction.md -------------------------------------------------------------------------------- /website-docs/docs/grpc-proxy/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Setting up a gRPC proxy" 3 | } -------------------------------------------------------------------------------- /website-docs/docs/grpc-proxy/enable-orderers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/grpc-proxy/enable-orderers.md -------------------------------------------------------------------------------- /website-docs/docs/grpc-proxy/enable-peers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/grpc-proxy/enable-peers.md -------------------------------------------------------------------------------- /website-docs/docs/identity-crd/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Fabric Identity CRD" 3 | } -------------------------------------------------------------------------------- /website-docs/docs/identity-crd/manage-identities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/identity-crd/manage-identities.md -------------------------------------------------------------------------------- /website-docs/docs/intro/getting-started-3-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/intro/getting-started-3-0.md -------------------------------------------------------------------------------- /website-docs/docs/intro/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/intro/getting-started.md -------------------------------------------------------------------------------- /website-docs/docs/intro/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/intro/intro.md -------------------------------------------------------------------------------- /website-docs/docs/kubectl-plugin/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Kubectl plugin" 3 | } -------------------------------------------------------------------------------- /website-docs/docs/kubectl-plugin/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/kubectl-plugin/installation.md -------------------------------------------------------------------------------- /website-docs/docs/kubectl-plugin/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/kubectl-plugin/upgrade.md -------------------------------------------------------------------------------- /website-docs/docs/operations-console/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Fabric Operations console" 3 | } -------------------------------------------------------------------------------- /website-docs/docs/operations-console/adding-cas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operations-console/adding-cas.md -------------------------------------------------------------------------------- /website-docs/docs/operations-console/adding-orderers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operations-console/adding-orderers.md -------------------------------------------------------------------------------- /website-docs/docs/operations-console/adding-orgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operations-console/adding-orgs.md -------------------------------------------------------------------------------- /website-docs/docs/operations-console/adding-peers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operations-console/adding-peers.md -------------------------------------------------------------------------------- /website-docs/docs/operations-console/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operations-console/getting-started.md -------------------------------------------------------------------------------- /website-docs/docs/operator-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Operator user guide" 3 | } -------------------------------------------------------------------------------- /website-docs/docs/operator-guide/auto-renew-certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operator-guide/auto-renew-certificates.md -------------------------------------------------------------------------------- /website-docs/docs/operator-guide/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operator-guide/configuration.md -------------------------------------------------------------------------------- /website-docs/docs/operator-guide/increase-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operator-guide/increase-resources.md -------------------------------------------------------------------------------- /website-docs/docs/operator-guide/increase-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operator-guide/increase-storage.md -------------------------------------------------------------------------------- /website-docs/docs/operator-guide/istio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operator-guide/istio.md -------------------------------------------------------------------------------- /website-docs/docs/operator-guide/migrate-network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operator-guide/migrate-network.md -------------------------------------------------------------------------------- /website-docs/docs/operator-guide/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operator-guide/monitoring.md -------------------------------------------------------------------------------- /website-docs/docs/operator-guide/prometheus-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operator-guide/prometheus-metrics.md -------------------------------------------------------------------------------- /website-docs/docs/operator-guide/renew-certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operator-guide/renew-certificates.md -------------------------------------------------------------------------------- /website-docs/docs/operator-guide/state-db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operator-guide/state-db.md -------------------------------------------------------------------------------- /website-docs/docs/operator-guide/upgrade-operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operator-guide/upgrade-operator.md -------------------------------------------------------------------------------- /website-docs/docs/operator-ui/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Fabric Operator UI" 3 | } -------------------------------------------------------------------------------- /website-docs/docs/operator-ui/deploy-operator-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operator-ui/deploy-operator-api.md -------------------------------------------------------------------------------- /website-docs/docs/operator-ui/deploy-operator-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operator-ui/deploy-operator-ui.md -------------------------------------------------------------------------------- /website-docs/docs/operator-ui/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operator-ui/getting-started.md -------------------------------------------------------------------------------- /website-docs/docs/operator-ui/tour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/operator-ui/tour.md -------------------------------------------------------------------------------- /website-docs/docs/security/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security" 3 | } -------------------------------------------------------------------------------- /website-docs/docs/security/revoke-identities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/security/revoke-identities.md -------------------------------------------------------------------------------- /website-docs/docs/user-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "User guide" 3 | } -------------------------------------------------------------------------------- /website-docs/docs/user-guide/create-channel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/user-guide/create-channel.mdx -------------------------------------------------------------------------------- /website-docs/docs/user-guide/develop-chaincode-locally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/user-guide/develop-chaincode-locally.md -------------------------------------------------------------------------------- /website-docs/docs/user-guide/enroll-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/user-guide/enroll-users.md -------------------------------------------------------------------------------- /website-docs/docs/user-guide/hashicorp-vault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/user-guide/hashicorp-vault.md -------------------------------------------------------------------------------- /website-docs/docs/user-guide/install-chaincode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/user-guide/install-chaincode.mdx -------------------------------------------------------------------------------- /website-docs/docs/user-guide/network-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/user-guide/network-config.md -------------------------------------------------------------------------------- /website-docs/docs/user-guide/using-networkconfig.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docs/user-guide/using-networkconfig.mdx -------------------------------------------------------------------------------- /website-docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/docusaurus.config.ts -------------------------------------------------------------------------------- /website-docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/package.json -------------------------------------------------------------------------------- /website-docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/sidebars.ts -------------------------------------------------------------------------------- /website-docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/src/css/custom.css -------------------------------------------------------------------------------- /website-docs/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/src/pages/index.js -------------------------------------------------------------------------------- /website-docs/src/pages/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/src/pages/styles.module.css -------------------------------------------------------------------------------- /website-docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website-docs/static/img/Black logo - no background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/Black logo - no background.svg -------------------------------------------------------------------------------- /website-docs/static/img/Color logo - no background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/Color logo - no background.svg -------------------------------------------------------------------------------- /website-docs/static/img/Color logo with background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/Color logo with background.svg -------------------------------------------------------------------------------- /website-docs/static/img/White logo - no background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/White logo - no background.svg -------------------------------------------------------------------------------- /website-docs/static/img/add_ordering_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/add_ordering_service.png -------------------------------------------------------------------------------- /website-docs/static/img/arch_chaincode_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/arch_chaincode_dev.png -------------------------------------------------------------------------------- /website-docs/static/img/channel_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/channel_top.png -------------------------------------------------------------------------------- /website-docs/static/img/external_chaincode_as_a_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/external_chaincode_as_a_service.png -------------------------------------------------------------------------------- /website-docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/favicon.ico -------------------------------------------------------------------------------- /website-docs/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/favicon.png -------------------------------------------------------------------------------- /website-docs/static/img/final_add_ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/final_add_ca.png -------------------------------------------------------------------------------- /website-docs/static/img/hlf_operator_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/hlf_operator_ui.png -------------------------------------------------------------------------------- /website-docs/static/img/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/img.png -------------------------------------------------------------------------------- /website-docs/static/img/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/img_1.png -------------------------------------------------------------------------------- /website-docs/static/img/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/img_2.png -------------------------------------------------------------------------------- /website-docs/static/img/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/img_3.png -------------------------------------------------------------------------------- /website-docs/static/img/img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/img_4.png -------------------------------------------------------------------------------- /website-docs/static/img/img_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/img_5.png -------------------------------------------------------------------------------- /website-docs/static/img/img_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/img_6.png -------------------------------------------------------------------------------- /website-docs/static/img/img_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/img_7.png -------------------------------------------------------------------------------- /website-docs/static/img/img_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/img_8.png -------------------------------------------------------------------------------- /website-docs/static/img/import_ca_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/import_ca_table.png -------------------------------------------------------------------------------- /website-docs/static/img/import_ord_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/import_ord_service.png -------------------------------------------------------------------------------- /website-docs/static/img/istio_hlf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/istio_hlf.png -------------------------------------------------------------------------------- /website-docs/static/img/kubernetes_builder_chaincode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/kubernetes_builder_chaincode.png -------------------------------------------------------------------------------- /website-docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/logo.svg -------------------------------------------------------------------------------- /website-docs/static/img/ngrok-tunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/ngrok-tunnel.png -------------------------------------------------------------------------------- /website-docs/static/img/ordering_service_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/ordering_service_import.png -------------------------------------------------------------------------------- /website-docs/static/img/select_json_ordering_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/select_json_ordering_service.png -------------------------------------------------------------------------------- /website-docs/static/img/state-db-hlf-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/state-db-hlf-docs.png -------------------------------------------------------------------------------- /website-docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /website-docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /website-docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /website-docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-bevel/bevel-operator-fabric/HEAD/website-docs/yarn.lock --------------------------------------------------------------------------------