├── .ansible-lint ├── .dockerignore ├── .flake8 ├── .github ├── scripts │ ├── bump.sh │ ├── get-host-ip.sh │ ├── kind_with_nginx.sh │ ├── purge.sh │ ├── run-integration-tests.sh │ ├── run-tests.sh │ ├── run-tutorial-tests.sh │ └── setup-tests.sh └── workflows │ ├── fvtest.yml │ ├── main.yml │ ├── publish-beta.yml │ ├── publish.yml │ └── purge.yml ├── .gitignore ├── .vscode └── settings.json ├── .yamllint.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── docker └── docker-entrypoint.sh ├── docs ├── Makefile ├── source │ ├── conf.py │ ├── favicon.ico │ ├── index.rst │ ├── installation.rst │ ├── migrating-v12-v2.rst │ ├── modules.rst │ ├── modules │ │ └── .gitkeep │ ├── roles.rst │ ├── roles │ │ ├── console.rst │ │ ├── crds.rst │ │ ├── endorsing_organization.rst │ │ ├── fabric-console.rst │ │ ├── fabric-operator-crds.rst │ │ ├── hlfsupport_console.rst │ │ ├── hlfsupport_crds.rst │ │ ├── mrha_endorsing_organization.rst │ │ ├── mrha_ordering_organization.rst │ │ ├── mzha_endorsing_organization.rst │ │ ├── mzha_ordering_organization.rst │ │ └── ordering_organization.rst │ ├── support.rst │ ├── tasks │ │ ├── addadmincert.rst │ │ ├── enable-fabricv2-capability.rst │ │ ├── haca.rst │ │ ├── intermediateCA.rst │ │ └── update-channel-parameters.rst │ └── tutorials │ │ ├── building.rst │ │ ├── deploying.rst │ │ ├── hlfsupport-installing.rst │ │ ├── installing-fabric-operator-console.rst │ │ ├── installing.rst │ │ ├── joining.rst │ │ └── oss-installing.rst └── templates │ └── module.rst.j2 ├── examples ├── add-admin-cert │ ├── .gitignore │ ├── 01-update-organization.yml │ ├── 02-update-syschannel-member.yml │ ├── 03-update-syschannel-admin.yml │ ├── 04-update-channels-member.yml │ ├── 05-update-channels-admin.yml │ ├── tasks │ │ ├── 04-update-channel-member.yml │ │ └── 05-update-channel-admin.yml │ └── vars.yml ├── chaincode_info │ └── 00-org1-chaincode-info.yml ├── create-ha-ca │ ├── create-ha-ca.yml │ └── vars.yml ├── create-intermediate-ca │ ├── create-parent-plus-intermediate-ca.yml │ └── vars.yml ├── enable-fabricv2-capability │ ├── 01-enable-fabricv2-systemchannel.yml │ ├── 02-enable-fabricv2-channels.yml │ ├── endorsement-policy.json │ ├── tasks │ │ └── 02-enable-fabricv2-channel.yml │ └── vars.yml ├── opensource-stack │ ├── 01-operator-install.yml │ ├── 02-console-install.yml │ ├── 90-KIND-ingress.yml │ ├── README.md │ ├── templates │ │ ├── coredns │ │ │ └── coredns.yaml.j2 │ │ └── ingress │ │ │ ├── ingress-nginx-controller.yaml │ │ │ └── kustomization.yaml │ └── vars.yml └── update-channel-parameters │ ├── update-channel-parameters.yml │ └── vars.yml ├── galaxy.yml ├── justfile ├── meta └── runtime.yml ├── plugins ├── module_utils │ ├── cert_utils.py │ ├── certificate_authorities.py │ ├── channel_utils.py │ ├── consoles.py │ ├── dict_utils.py │ ├── enrolled_identities.py │ ├── fabric_utils.py │ ├── file_utils.py │ ├── module.py │ ├── msp_utils.py │ ├── ordering_services.py │ ├── organizations.py │ ├── peers.py │ ├── pkcs11 │ │ └── crypto.py │ ├── proto_utils.py │ └── utils.py └── modules │ ├── approved_chaincode.py │ ├── certificate_authority.py │ ├── certificate_authority_info.py │ ├── chaincode_list_info.py │ ├── channel_acl.py │ ├── channel_block.py │ ├── channel_capabilities.py │ ├── channel_config.py │ ├── channel_consenter.py │ ├── channel_consenters.py │ ├── channel_member.py │ ├── channel_member_info.py │ ├── channel_parameters.py │ ├── channel_policy.py │ ├── committed_chaincode.py │ ├── connection_profile.py │ ├── console_user.py │ ├── consortium_member.py │ ├── consortium_member_info.py │ ├── enrolled_identity.py │ ├── enrolled_identity_info.py │ ├── external_certificate_authority.py │ ├── external_ordering_service.py │ ├── external_ordering_service_node.py │ ├── external_organization.py │ ├── external_peer.py │ ├── installed_chaincode.py │ ├── instantiated_chaincode.py │ ├── ordering_service.py │ ├── ordering_service_admin.py │ ├── ordering_service_info.py │ ├── ordering_service_node.py │ ├── ordering_service_node_info.py │ ├── organization.py │ ├── organization_info.py │ ├── peer.py │ ├── peer_channel.py │ ├── peer_info.py │ └── registered_identity.py ├── requirements.txt ├── roles ├── console │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ ├── create.yml │ │ ├── delete.yml │ │ ├── k8s │ │ │ ├── create.yml │ │ │ └── delete.yml │ │ ├── main.yml │ │ └── openshift │ │ │ ├── create.yml │ │ │ └── delete.yml │ └── templates │ │ ├── k8s │ │ ├── cluster_role.yml.j2 │ │ ├── cluster_role_binding.yml.j2 │ │ ├── console.yml.j2 │ │ ├── image_pull_secret.yml.j2 │ │ ├── operator.yml.j2 │ │ ├── pod_security_policy.yml.j2 │ │ └── role_binding.yml.j2 │ │ └── openshift │ │ ├── cluster_role.yml.j2 │ │ ├── cluster_role_binding.yml.j2 │ │ ├── console.yml.j2 │ │ ├── image_pull_secret.yml.j2 │ │ ├── operator.yml.j2 │ │ └── security_context_constraints.yml.j2 ├── crds │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ ├── create.yml │ │ ├── delete.yml │ │ ├── k8s │ │ │ ├── create.yml │ │ │ └── delete.yml │ │ ├── main.yml │ │ └── openshift │ │ │ ├── create.yml │ │ │ └── delete.yml │ └── templates │ │ ├── ca-crd.yml.j2 │ │ ├── console-crd.yml.j2 │ │ ├── k8s │ │ ├── deployment.yml.j2 │ │ ├── image_pull_secret.yml.j2 │ │ ├── role.yml.j2 │ │ ├── role_binding.yml.j2 │ │ └── service.yml.j2 │ │ ├── openshift │ │ ├── deployment.yml.j2 │ │ ├── image_pull_secret.yml.j2 │ │ ├── role.yml.j2 │ │ ├── role_binding.yml.j2 │ │ ├── security_context_constraints.yml.j2 │ │ └── service.yml.j2 │ │ ├── orderer-crd.yml.j2 │ │ └── peer-crd.yml.j2 ├── endorsing_organization │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── tasks │ │ ├── create.yml │ │ ├── delete.yml │ │ └── main.yml ├── fabric_console │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ ├── create.yml │ │ ├── delete.yml │ │ ├── k8s │ │ │ ├── create.yml │ │ │ └── delete.yml │ │ ├── main.yml │ │ └── openshift │ │ │ ├── create.yml │ │ │ └── delete.yml │ └── templates │ │ ├── k8s │ │ └── hlf-operations-console.yaml.j2 │ │ └── openshift │ │ └── hlf-operations-console.yaml.j2 ├── fabric_operator_crds │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ ├── create.yml │ │ ├── delete.yml │ │ ├── k8s │ │ │ ├── create.yml │ │ │ └── delete.yml │ │ ├── main.yml │ │ └── openshift │ │ │ ├── create.yml │ │ │ └── delete.yml │ └── templates │ │ ├── k8s │ │ ├── coredns │ │ │ └── coredns.yaml.j2 │ │ ├── ingress │ │ │ ├── ingress-nginx-controller.yaml │ │ │ └── kustomization.yaml │ │ ├── manager │ │ │ └── hlf-operator-manager.yaml.j2 │ │ └── rbac │ │ │ ├── hlf-operator-clusterrole.yaml │ │ │ ├── hlf-operator-clusterrolebinding.yaml.j2 │ │ │ └── hlf-operator-serviceaccount.yaml │ │ └── openshift │ │ ├── deployment.yml.j2 │ │ ├── image_pull_secret.yml.j2 │ │ ├── manager │ │ └── hlf-operator-manager.yaml.j2 │ │ ├── rbac │ │ ├── hlf-operator-clusterrole.yaml │ │ ├── hlf-operator-clusterrolebinding.yaml.j2 │ │ └── hlf-operator-serviceaccount.yaml │ │ ├── role.yml.j2 │ │ ├── role_binding.yml.j2 │ │ ├── security_context_constraints.yml.j2 │ │ └── service.yml.j2 ├── hlfsupport_console │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ ├── create.yml │ │ ├── delete.yml │ │ ├── k8s │ │ │ ├── create.yml │ │ │ └── delete.yml │ │ ├── main.yml │ │ └── openshift │ │ │ ├── create.yml │ │ │ └── delete.yml │ └── templates │ │ ├── k8s │ │ ├── cluster_role.yml.j2 │ │ ├── cluster_role_binding.yml.j2 │ │ ├── console.yml.j2 │ │ ├── image_pull_secret.yml.j2 │ │ ├── operator.yml.j2 │ │ └── role_binding.yml.j2 │ │ └── openshift │ │ ├── cluster_role.yml.j2 │ │ ├── cluster_role_binding.yml.j2 │ │ ├── console.yml.j2 │ │ ├── image_pull_secret.yml.j2 │ │ ├── operator.yml.j2 │ │ └── security_context_constraints.yml.j2 ├── hlfsupport_crds │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ ├── create.yml │ │ ├── delete.yml │ │ ├── k8s │ │ │ ├── create.yml │ │ │ └── delete.yml │ │ ├── main.yml │ │ └── openshift │ │ │ ├── create.yml │ │ │ └── delete.yml │ └── templates │ │ ├── ca-crd.yml.j2 │ │ ├── console-crd.yml.j2 │ │ ├── k8s │ │ ├── deployment.yml.j2 │ │ ├── image_pull_secret.yml.j2 │ │ ├── role.yml.j2 │ │ ├── role_binding.yml.j2 │ │ └── service.yml.j2 │ │ ├── openshift │ │ ├── deployment.yml.j2 │ │ ├── image_pull_secret.yml.j2 │ │ ├── role.yml.j2 │ │ ├── role_binding.yml.j2 │ │ ├── security_context_constraints.yml.j2 │ │ └── service.yml.j2 │ │ ├── orderer-crd.yml.j2 │ │ └── peer-crd.yml.j2 ├── mrha_endorsing_organization │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── tasks │ │ ├── create.yml │ │ ├── create │ │ ├── primary-peer.yml │ │ ├── primary-region.yml │ │ ├── secondary-peer.yml │ │ └── secondary-region.yml │ │ ├── delete.yml │ │ ├── delete │ │ ├── primary-peer.yml │ │ ├── primary-region.yml │ │ ├── secondary-peer.yml │ │ └── secondary-region.yml │ │ └── main.yml ├── mrha_ordering_organization │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── tasks │ │ ├── create.yml │ │ ├── create │ │ ├── primary-osn.yml │ │ ├── primary-region.yml │ │ ├── secondary-osn.yml │ │ └── secondary-region.yml │ │ ├── delete.yml │ │ ├── delete │ │ ├── primary-osn.yml │ │ ├── primary-region.yml │ │ ├── secondary-osn.yml │ │ └── secondary-region.yml │ │ └── main.yml ├── mzha_endorsing_organization │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── tasks │ │ ├── create.yml │ │ ├── delete.yml │ │ └── main.yml ├── mzha_ordering_organization │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── tasks │ │ ├── create.yml │ │ ├── delete.yml │ │ └── main.yml └── ordering_organization │ ├── README.md │ ├── defaults │ └── main.yml │ ├── meta │ └── main.yml │ └── tasks │ ├── create.yml │ ├── delete.yml │ └── main.yml ├── tests └── integration │ ├── integration_config.yml │ └── targets │ ├── it_certificate_authority │ └── tasks │ │ ├── assertions.yml │ │ └── main.yml │ ├── it_endorsing_organization │ └── tasks │ │ └── main.yml │ ├── it_external_ordering_service │ ├── tasks │ │ └── main.yml │ └── templates │ │ └── one_node_ordering_service.json.j2 │ └── it_ordering_organization │ └── tasks │ └── main.yml └── tutorial ├── .gitignore ├── 01-create-ordering-organization-components.yml ├── 02-create-endorsing-organization-components.yml ├── 03-export-organization.yml ├── 04-import-organization.yml ├── 05-enable-capabilities.yml ├── 06-add-organization-to-consortium.yml ├── 07-export-ordering-service.yml ├── 08-import-ordering-service.yml ├── 09-admins-policy.json.j2 ├── 09-create-channel.yml ├── 09-endorsement-policy.json.j2 ├── 09-lifecycle-endorsement-policy.json.j2 ├── 09-readers-policy.json.j2 ├── 09-writers-policy.json.j2 ├── 10-join-peer-to-channel.yml ├── 11-add-anchor-peer-to-channel.yml ├── 12-create-endorsing-organization-components.yml ├── 13-export-organization.yml ├── 14-import-organization.yml ├── 15-add-organization-to-channel.yml ├── 15-admins-policy.json.j2 ├── 15-endorsement-policy.json.j2 ├── 15-lifecycle-endorsement-policy.json.j2 ├── 15-readers-policy.json.j2 ├── 15-writers-policy.json.j2 ├── 16-import-ordering-service.yml ├── 17-join-peer-to-channel.yml ├── 18-add-anchor-peer-to-channel.yml ├── 19-install-and-approve-chaincode.yml ├── 20-install-and-approve-chaincode.yml ├── 21-commit-chaincode.yml ├── 22-register-application.yml ├── 23-register-application.yml ├── 97-delete-endorsing-organization-components.yml ├── 98-delete-endorsing-organization-components.yml ├── 99-delete-ordering-organization-components.yml ├── build_network.sh ├── common-vars.yml ├── deploy_smart_contract.sh ├── fabcar@1.0.0.tgz ├── join_network.sh ├── ordering-org-vars.yml ├── org1-vars.yml ├── org2-vars.yml └── v1.x ├── 01-create-ordering-organization-components.yml ├── 02-create-endorsing-organization-components.yml ├── 03-export-organization.yml ├── 04-import-organization.yml ├── 05-add-organization-to-consortium.yml ├── 06-export-ordering-service.yml ├── 07-import-ordering-service.yml ├── 08-admins-policy.json.j2 ├── 08-create-channel.yml ├── 08-readers-policy.json.j2 ├── 08-writers-policy.json.j2 ├── 09-join-peer-to-channel.yml ├── 10-add-anchor-peer-to-channel.yml ├── 11-create-endorsing-organization-components.yml ├── 12-export-organization.yml ├── 13-import-organization.yml ├── 14-add-organization-to-channel.yml ├── 14-admins-policy.json.j2 ├── 14-readers-policy.json.j2 ├── 14-writers-policy.json.j2 ├── 15-import-ordering-service.yml ├── 16-join-peer-to-channel.yml ├── 17-add-anchor-peer-to-channel.yml ├── 18-install-chaincode.yml ├── 19-install-chaincode.yml ├── 20-instantiate-chaincode.yml ├── 21-register-application.yml ├── 22-register-application.yml ├── 97-delete-endorsing-organization-components.yml ├── 98-delete-endorsing-organization-components.yml ├── 99-delete-ordering-organization-components.yml ├── build_network.sh ├── common-vars.yml ├── deploy_smart_contract.sh ├── fabcar@1.0.0.cds ├── join_network.sh ├── ordering-org-vars.yml ├── org1-vars.yml └── org2-vars.yml /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.dockerignore -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | [flake8] 5 | ignore = E501,W504 -------------------------------------------------------------------------------- /.github/scripts/bump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.github/scripts/bump.sh -------------------------------------------------------------------------------- /.github/scripts/get-host-ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.github/scripts/get-host-ip.sh -------------------------------------------------------------------------------- /.github/scripts/kind_with_nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.github/scripts/kind_with_nginx.sh -------------------------------------------------------------------------------- /.github/scripts/purge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.github/scripts/purge.sh -------------------------------------------------------------------------------- /.github/scripts/run-integration-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.github/scripts/run-integration-tests.sh -------------------------------------------------------------------------------- /.github/scripts/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.github/scripts/run-tests.sh -------------------------------------------------------------------------------- /.github/scripts/run-tutorial-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.github/scripts/run-tutorial-tests.sh -------------------------------------------------------------------------------- /.github/scripts/setup-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.github/scripts/setup-tests.sh -------------------------------------------------------------------------------- /.github/workflows/fvtest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.github/workflows/fvtest.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish-beta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.github/workflows/publish-beta.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/purge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.github/workflows/purge.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/README.md -------------------------------------------------------------------------------- /docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docker/docker-entrypoint.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/favicon.ico -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/migrating-v12-v2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/migrating-v12-v2.rst -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /docs/source/modules/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/roles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/roles.rst -------------------------------------------------------------------------------- /docs/source/roles/console.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/roles/console.rst -------------------------------------------------------------------------------- /docs/source/roles/crds.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/roles/crds.rst -------------------------------------------------------------------------------- /docs/source/roles/endorsing_organization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/roles/endorsing_organization.rst -------------------------------------------------------------------------------- /docs/source/roles/fabric-console.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/roles/fabric-console.rst -------------------------------------------------------------------------------- /docs/source/roles/fabric-operator-crds.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/roles/fabric-operator-crds.rst -------------------------------------------------------------------------------- /docs/source/roles/hlfsupport_console.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/roles/hlfsupport_console.rst -------------------------------------------------------------------------------- /docs/source/roles/hlfsupport_crds.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/roles/hlfsupport_crds.rst -------------------------------------------------------------------------------- /docs/source/roles/mrha_endorsing_organization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/roles/mrha_endorsing_organization.rst -------------------------------------------------------------------------------- /docs/source/roles/mrha_ordering_organization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/roles/mrha_ordering_organization.rst -------------------------------------------------------------------------------- /docs/source/roles/mzha_endorsing_organization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/roles/mzha_endorsing_organization.rst -------------------------------------------------------------------------------- /docs/source/roles/mzha_ordering_organization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/roles/mzha_ordering_organization.rst -------------------------------------------------------------------------------- /docs/source/roles/ordering_organization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/roles/ordering_organization.rst -------------------------------------------------------------------------------- /docs/source/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/support.rst -------------------------------------------------------------------------------- /docs/source/tasks/addadmincert.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/tasks/addadmincert.rst -------------------------------------------------------------------------------- /docs/source/tasks/enable-fabricv2-capability.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/tasks/enable-fabricv2-capability.rst -------------------------------------------------------------------------------- /docs/source/tasks/haca.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/tasks/haca.rst -------------------------------------------------------------------------------- /docs/source/tasks/intermediateCA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/tasks/intermediateCA.rst -------------------------------------------------------------------------------- /docs/source/tasks/update-channel-parameters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/tasks/update-channel-parameters.rst -------------------------------------------------------------------------------- /docs/source/tutorials/building.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/tutorials/building.rst -------------------------------------------------------------------------------- /docs/source/tutorials/deploying.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/tutorials/deploying.rst -------------------------------------------------------------------------------- /docs/source/tutorials/hlfsupport-installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/tutorials/hlfsupport-installing.rst -------------------------------------------------------------------------------- /docs/source/tutorials/installing-fabric-operator-console.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/tutorials/installing-fabric-operator-console.rst -------------------------------------------------------------------------------- /docs/source/tutorials/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/tutorials/installing.rst -------------------------------------------------------------------------------- /docs/source/tutorials/joining.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/tutorials/joining.rst -------------------------------------------------------------------------------- /docs/source/tutorials/oss-installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/source/tutorials/oss-installing.rst -------------------------------------------------------------------------------- /docs/templates/module.rst.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/docs/templates/module.rst.j2 -------------------------------------------------------------------------------- /examples/add-admin-cert/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | *.bin 3 | -------------------------------------------------------------------------------- /examples/add-admin-cert/01-update-organization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/add-admin-cert/01-update-organization.yml -------------------------------------------------------------------------------- /examples/add-admin-cert/02-update-syschannel-member.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/add-admin-cert/02-update-syschannel-member.yml -------------------------------------------------------------------------------- /examples/add-admin-cert/03-update-syschannel-admin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/add-admin-cert/03-update-syschannel-admin.yml -------------------------------------------------------------------------------- /examples/add-admin-cert/04-update-channels-member.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/add-admin-cert/04-update-channels-member.yml -------------------------------------------------------------------------------- /examples/add-admin-cert/05-update-channels-admin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/add-admin-cert/05-update-channels-admin.yml -------------------------------------------------------------------------------- /examples/add-admin-cert/tasks/04-update-channel-member.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/add-admin-cert/tasks/04-update-channel-member.yml -------------------------------------------------------------------------------- /examples/add-admin-cert/tasks/05-update-channel-admin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/add-admin-cert/tasks/05-update-channel-admin.yml -------------------------------------------------------------------------------- /examples/add-admin-cert/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/add-admin-cert/vars.yml -------------------------------------------------------------------------------- /examples/chaincode_info/00-org1-chaincode-info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/chaincode_info/00-org1-chaincode-info.yml -------------------------------------------------------------------------------- /examples/create-ha-ca/create-ha-ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/create-ha-ca/create-ha-ca.yml -------------------------------------------------------------------------------- /examples/create-ha-ca/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/create-ha-ca/vars.yml -------------------------------------------------------------------------------- /examples/create-intermediate-ca/create-parent-plus-intermediate-ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/create-intermediate-ca/create-parent-plus-intermediate-ca.yml -------------------------------------------------------------------------------- /examples/create-intermediate-ca/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/create-intermediate-ca/vars.yml -------------------------------------------------------------------------------- /examples/enable-fabricv2-capability/01-enable-fabricv2-systemchannel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/enable-fabricv2-capability/01-enable-fabricv2-systemchannel.yml -------------------------------------------------------------------------------- /examples/enable-fabricv2-capability/02-enable-fabricv2-channels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/enable-fabricv2-capability/02-enable-fabricv2-channels.yml -------------------------------------------------------------------------------- /examples/enable-fabricv2-capability/endorsement-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/enable-fabricv2-capability/endorsement-policy.json -------------------------------------------------------------------------------- /examples/enable-fabricv2-capability/tasks/02-enable-fabricv2-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/enable-fabricv2-capability/tasks/02-enable-fabricv2-channel.yml -------------------------------------------------------------------------------- /examples/enable-fabricv2-capability/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/enable-fabricv2-capability/vars.yml -------------------------------------------------------------------------------- /examples/opensource-stack/01-operator-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/opensource-stack/01-operator-install.yml -------------------------------------------------------------------------------- /examples/opensource-stack/02-console-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/opensource-stack/02-console-install.yml -------------------------------------------------------------------------------- /examples/opensource-stack/90-KIND-ingress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/opensource-stack/90-KIND-ingress.yml -------------------------------------------------------------------------------- /examples/opensource-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/opensource-stack/README.md -------------------------------------------------------------------------------- /examples/opensource-stack/templates/coredns/coredns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/opensource-stack/templates/coredns/coredns.yaml.j2 -------------------------------------------------------------------------------- /examples/opensource-stack/templates/ingress/ingress-nginx-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/opensource-stack/templates/ingress/ingress-nginx-controller.yaml -------------------------------------------------------------------------------- /examples/opensource-stack/templates/ingress/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/opensource-stack/templates/ingress/kustomization.yaml -------------------------------------------------------------------------------- /examples/opensource-stack/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/opensource-stack/vars.yml -------------------------------------------------------------------------------- /examples/update-channel-parameters/update-channel-parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/update-channel-parameters/update-channel-parameters.yml -------------------------------------------------------------------------------- /examples/update-channel-parameters/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/examples/update-channel-parameters/vars.yml -------------------------------------------------------------------------------- /galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/galaxy.yml -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/justfile -------------------------------------------------------------------------------- /meta/runtime.yml: -------------------------------------------------------------------------------- 1 | --- 2 | requires_ansible: ">=2.9" 3 | -------------------------------------------------------------------------------- /plugins/module_utils/cert_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/module_utils/cert_utils.py -------------------------------------------------------------------------------- /plugins/module_utils/certificate_authorities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/module_utils/certificate_authorities.py -------------------------------------------------------------------------------- /plugins/module_utils/channel_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/module_utils/channel_utils.py -------------------------------------------------------------------------------- /plugins/module_utils/consoles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/module_utils/consoles.py -------------------------------------------------------------------------------- /plugins/module_utils/dict_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/module_utils/dict_utils.py -------------------------------------------------------------------------------- /plugins/module_utils/enrolled_identities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/module_utils/enrolled_identities.py -------------------------------------------------------------------------------- /plugins/module_utils/fabric_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/module_utils/fabric_utils.py -------------------------------------------------------------------------------- /plugins/module_utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/module_utils/file_utils.py -------------------------------------------------------------------------------- /plugins/module_utils/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/module_utils/module.py -------------------------------------------------------------------------------- /plugins/module_utils/msp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/module_utils/msp_utils.py -------------------------------------------------------------------------------- /plugins/module_utils/ordering_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/module_utils/ordering_services.py -------------------------------------------------------------------------------- /plugins/module_utils/organizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/module_utils/organizations.py -------------------------------------------------------------------------------- /plugins/module_utils/peers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/module_utils/peers.py -------------------------------------------------------------------------------- /plugins/module_utils/pkcs11/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/module_utils/pkcs11/crypto.py -------------------------------------------------------------------------------- /plugins/module_utils/proto_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/module_utils/proto_utils.py -------------------------------------------------------------------------------- /plugins/module_utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/module_utils/utils.py -------------------------------------------------------------------------------- /plugins/modules/approved_chaincode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/approved_chaincode.py -------------------------------------------------------------------------------- /plugins/modules/certificate_authority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/certificate_authority.py -------------------------------------------------------------------------------- /plugins/modules/certificate_authority_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/certificate_authority_info.py -------------------------------------------------------------------------------- /plugins/modules/chaincode_list_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/chaincode_list_info.py -------------------------------------------------------------------------------- /plugins/modules/channel_acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/channel_acl.py -------------------------------------------------------------------------------- /plugins/modules/channel_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/channel_block.py -------------------------------------------------------------------------------- /plugins/modules/channel_capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/channel_capabilities.py -------------------------------------------------------------------------------- /plugins/modules/channel_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/channel_config.py -------------------------------------------------------------------------------- /plugins/modules/channel_consenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/channel_consenter.py -------------------------------------------------------------------------------- /plugins/modules/channel_consenters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/channel_consenters.py -------------------------------------------------------------------------------- /plugins/modules/channel_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/channel_member.py -------------------------------------------------------------------------------- /plugins/modules/channel_member_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/channel_member_info.py -------------------------------------------------------------------------------- /plugins/modules/channel_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/channel_parameters.py -------------------------------------------------------------------------------- /plugins/modules/channel_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/channel_policy.py -------------------------------------------------------------------------------- /plugins/modules/committed_chaincode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/committed_chaincode.py -------------------------------------------------------------------------------- /plugins/modules/connection_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/connection_profile.py -------------------------------------------------------------------------------- /plugins/modules/console_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/console_user.py -------------------------------------------------------------------------------- /plugins/modules/consortium_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/consortium_member.py -------------------------------------------------------------------------------- /plugins/modules/consortium_member_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/consortium_member_info.py -------------------------------------------------------------------------------- /plugins/modules/enrolled_identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/enrolled_identity.py -------------------------------------------------------------------------------- /plugins/modules/enrolled_identity_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/enrolled_identity_info.py -------------------------------------------------------------------------------- /plugins/modules/external_certificate_authority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/external_certificate_authority.py -------------------------------------------------------------------------------- /plugins/modules/external_ordering_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/external_ordering_service.py -------------------------------------------------------------------------------- /plugins/modules/external_ordering_service_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/external_ordering_service_node.py -------------------------------------------------------------------------------- /plugins/modules/external_organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/external_organization.py -------------------------------------------------------------------------------- /plugins/modules/external_peer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/external_peer.py -------------------------------------------------------------------------------- /plugins/modules/installed_chaincode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/installed_chaincode.py -------------------------------------------------------------------------------- /plugins/modules/instantiated_chaincode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/instantiated_chaincode.py -------------------------------------------------------------------------------- /plugins/modules/ordering_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/ordering_service.py -------------------------------------------------------------------------------- /plugins/modules/ordering_service_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/ordering_service_admin.py -------------------------------------------------------------------------------- /plugins/modules/ordering_service_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/ordering_service_info.py -------------------------------------------------------------------------------- /plugins/modules/ordering_service_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/ordering_service_node.py -------------------------------------------------------------------------------- /plugins/modules/ordering_service_node_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/ordering_service_node_info.py -------------------------------------------------------------------------------- /plugins/modules/organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/organization.py -------------------------------------------------------------------------------- /plugins/modules/organization_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/organization_info.py -------------------------------------------------------------------------------- /plugins/modules/peer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/peer.py -------------------------------------------------------------------------------- /plugins/modules/peer_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/peer_channel.py -------------------------------------------------------------------------------- /plugins/modules/peer_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/peer_info.py -------------------------------------------------------------------------------- /plugins/modules/registered_identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/plugins/modules/registered_identity.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/requirements.txt -------------------------------------------------------------------------------- /roles/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/README.md -------------------------------------------------------------------------------- /roles/console/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/defaults/main.yml -------------------------------------------------------------------------------- /roles/console/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/meta/main.yml -------------------------------------------------------------------------------- /roles/console/tasks/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/tasks/create.yml -------------------------------------------------------------------------------- /roles/console/tasks/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/tasks/delete.yml -------------------------------------------------------------------------------- /roles/console/tasks/k8s/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/tasks/k8s/create.yml -------------------------------------------------------------------------------- /roles/console/tasks/k8s/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/tasks/k8s/delete.yml -------------------------------------------------------------------------------- /roles/console/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/tasks/main.yml -------------------------------------------------------------------------------- /roles/console/tasks/openshift/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/tasks/openshift/create.yml -------------------------------------------------------------------------------- /roles/console/tasks/openshift/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/tasks/openshift/delete.yml -------------------------------------------------------------------------------- /roles/console/templates/k8s/cluster_role.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/templates/k8s/cluster_role.yml.j2 -------------------------------------------------------------------------------- /roles/console/templates/k8s/cluster_role_binding.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/templates/k8s/cluster_role_binding.yml.j2 -------------------------------------------------------------------------------- /roles/console/templates/k8s/console.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/templates/k8s/console.yml.j2 -------------------------------------------------------------------------------- /roles/console/templates/k8s/image_pull_secret.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/templates/k8s/image_pull_secret.yml.j2 -------------------------------------------------------------------------------- /roles/console/templates/k8s/operator.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/templates/k8s/operator.yml.j2 -------------------------------------------------------------------------------- /roles/console/templates/k8s/pod_security_policy.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/templates/k8s/pod_security_policy.yml.j2 -------------------------------------------------------------------------------- /roles/console/templates/k8s/role_binding.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/templates/k8s/role_binding.yml.j2 -------------------------------------------------------------------------------- /roles/console/templates/openshift/cluster_role.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/templates/openshift/cluster_role.yml.j2 -------------------------------------------------------------------------------- /roles/console/templates/openshift/cluster_role_binding.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/templates/openshift/cluster_role_binding.yml.j2 -------------------------------------------------------------------------------- /roles/console/templates/openshift/console.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/templates/openshift/console.yml.j2 -------------------------------------------------------------------------------- /roles/console/templates/openshift/image_pull_secret.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/templates/openshift/image_pull_secret.yml.j2 -------------------------------------------------------------------------------- /roles/console/templates/openshift/operator.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/templates/openshift/operator.yml.j2 -------------------------------------------------------------------------------- /roles/console/templates/openshift/security_context_constraints.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/console/templates/openshift/security_context_constraints.yml.j2 -------------------------------------------------------------------------------- /roles/crds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/README.md -------------------------------------------------------------------------------- /roles/crds/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/defaults/main.yml -------------------------------------------------------------------------------- /roles/crds/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/meta/main.yml -------------------------------------------------------------------------------- /roles/crds/tasks/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/tasks/create.yml -------------------------------------------------------------------------------- /roles/crds/tasks/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/tasks/delete.yml -------------------------------------------------------------------------------- /roles/crds/tasks/k8s/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/tasks/k8s/create.yml -------------------------------------------------------------------------------- /roles/crds/tasks/k8s/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/tasks/k8s/delete.yml -------------------------------------------------------------------------------- /roles/crds/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/tasks/main.yml -------------------------------------------------------------------------------- /roles/crds/tasks/openshift/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/tasks/openshift/create.yml -------------------------------------------------------------------------------- /roles/crds/tasks/openshift/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/tasks/openshift/delete.yml -------------------------------------------------------------------------------- /roles/crds/templates/ca-crd.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/templates/ca-crd.yml.j2 -------------------------------------------------------------------------------- /roles/crds/templates/console-crd.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/templates/console-crd.yml.j2 -------------------------------------------------------------------------------- /roles/crds/templates/k8s/deployment.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/templates/k8s/deployment.yml.j2 -------------------------------------------------------------------------------- /roles/crds/templates/k8s/image_pull_secret.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/templates/k8s/image_pull_secret.yml.j2 -------------------------------------------------------------------------------- /roles/crds/templates/k8s/role.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/templates/k8s/role.yml.j2 -------------------------------------------------------------------------------- /roles/crds/templates/k8s/role_binding.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/templates/k8s/role_binding.yml.j2 -------------------------------------------------------------------------------- /roles/crds/templates/k8s/service.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/templates/k8s/service.yml.j2 -------------------------------------------------------------------------------- /roles/crds/templates/openshift/deployment.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/templates/openshift/deployment.yml.j2 -------------------------------------------------------------------------------- /roles/crds/templates/openshift/image_pull_secret.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/templates/openshift/image_pull_secret.yml.j2 -------------------------------------------------------------------------------- /roles/crds/templates/openshift/role.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/templates/openshift/role.yml.j2 -------------------------------------------------------------------------------- /roles/crds/templates/openshift/role_binding.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/templates/openshift/role_binding.yml.j2 -------------------------------------------------------------------------------- /roles/crds/templates/openshift/security_context_constraints.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/templates/openshift/security_context_constraints.yml.j2 -------------------------------------------------------------------------------- /roles/crds/templates/openshift/service.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/templates/openshift/service.yml.j2 -------------------------------------------------------------------------------- /roles/crds/templates/orderer-crd.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/templates/orderer-crd.yml.j2 -------------------------------------------------------------------------------- /roles/crds/templates/peer-crd.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/crds/templates/peer-crd.yml.j2 -------------------------------------------------------------------------------- /roles/endorsing_organization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/endorsing_organization/README.md -------------------------------------------------------------------------------- /roles/endorsing_organization/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/endorsing_organization/defaults/main.yml -------------------------------------------------------------------------------- /roles/endorsing_organization/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/endorsing_organization/meta/main.yml -------------------------------------------------------------------------------- /roles/endorsing_organization/tasks/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/endorsing_organization/tasks/create.yml -------------------------------------------------------------------------------- /roles/endorsing_organization/tasks/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/endorsing_organization/tasks/delete.yml -------------------------------------------------------------------------------- /roles/endorsing_organization/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/endorsing_organization/tasks/main.yml -------------------------------------------------------------------------------- /roles/fabric_console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_console/README.md -------------------------------------------------------------------------------- /roles/fabric_console/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_console/defaults/main.yml -------------------------------------------------------------------------------- /roles/fabric_console/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_console/meta/main.yml -------------------------------------------------------------------------------- /roles/fabric_console/tasks/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_console/tasks/create.yml -------------------------------------------------------------------------------- /roles/fabric_console/tasks/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_console/tasks/delete.yml -------------------------------------------------------------------------------- /roles/fabric_console/tasks/k8s/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_console/tasks/k8s/create.yml -------------------------------------------------------------------------------- /roles/fabric_console/tasks/k8s/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_console/tasks/k8s/delete.yml -------------------------------------------------------------------------------- /roles/fabric_console/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_console/tasks/main.yml -------------------------------------------------------------------------------- /roles/fabric_console/tasks/openshift/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_console/tasks/openshift/create.yml -------------------------------------------------------------------------------- /roles/fabric_console/tasks/openshift/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_console/tasks/openshift/delete.yml -------------------------------------------------------------------------------- /roles/fabric_console/templates/k8s/hlf-operations-console.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_console/templates/k8s/hlf-operations-console.yaml.j2 -------------------------------------------------------------------------------- /roles/fabric_console/templates/openshift/hlf-operations-console.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_console/templates/openshift/hlf-operations-console.yaml.j2 -------------------------------------------------------------------------------- /roles/fabric_operator_crds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/README.md -------------------------------------------------------------------------------- /roles/fabric_operator_crds/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/defaults/main.yml -------------------------------------------------------------------------------- /roles/fabric_operator_crds/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/meta/main.yml -------------------------------------------------------------------------------- /roles/fabric_operator_crds/tasks/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/tasks/create.yml -------------------------------------------------------------------------------- /roles/fabric_operator_crds/tasks/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/tasks/delete.yml -------------------------------------------------------------------------------- /roles/fabric_operator_crds/tasks/k8s/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/tasks/k8s/create.yml -------------------------------------------------------------------------------- /roles/fabric_operator_crds/tasks/k8s/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/tasks/k8s/delete.yml -------------------------------------------------------------------------------- /roles/fabric_operator_crds/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/tasks/main.yml -------------------------------------------------------------------------------- /roles/fabric_operator_crds/tasks/openshift/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/tasks/openshift/create.yml -------------------------------------------------------------------------------- /roles/fabric_operator_crds/tasks/openshift/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/tasks/openshift/delete.yml -------------------------------------------------------------------------------- /roles/fabric_operator_crds/templates/k8s/coredns/coredns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/templates/k8s/coredns/coredns.yaml.j2 -------------------------------------------------------------------------------- /roles/fabric_operator_crds/templates/k8s/ingress/ingress-nginx-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/templates/k8s/ingress/ingress-nginx-controller.yaml -------------------------------------------------------------------------------- /roles/fabric_operator_crds/templates/k8s/ingress/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/templates/k8s/ingress/kustomization.yaml -------------------------------------------------------------------------------- /roles/fabric_operator_crds/templates/k8s/manager/hlf-operator-manager.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/templates/k8s/manager/hlf-operator-manager.yaml.j2 -------------------------------------------------------------------------------- /roles/fabric_operator_crds/templates/k8s/rbac/hlf-operator-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/templates/k8s/rbac/hlf-operator-clusterrole.yaml -------------------------------------------------------------------------------- /roles/fabric_operator_crds/templates/k8s/rbac/hlf-operator-clusterrolebinding.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/templates/k8s/rbac/hlf-operator-clusterrolebinding.yaml.j2 -------------------------------------------------------------------------------- /roles/fabric_operator_crds/templates/k8s/rbac/hlf-operator-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/templates/k8s/rbac/hlf-operator-serviceaccount.yaml -------------------------------------------------------------------------------- /roles/fabric_operator_crds/templates/openshift/deployment.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/templates/openshift/deployment.yml.j2 -------------------------------------------------------------------------------- /roles/fabric_operator_crds/templates/openshift/image_pull_secret.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/templates/openshift/image_pull_secret.yml.j2 -------------------------------------------------------------------------------- /roles/fabric_operator_crds/templates/openshift/manager/hlf-operator-manager.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/templates/openshift/manager/hlf-operator-manager.yaml.j2 -------------------------------------------------------------------------------- /roles/fabric_operator_crds/templates/openshift/rbac/hlf-operator-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/templates/openshift/rbac/hlf-operator-clusterrole.yaml -------------------------------------------------------------------------------- /roles/fabric_operator_crds/templates/openshift/rbac/hlf-operator-clusterrolebinding.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/templates/openshift/rbac/hlf-operator-clusterrolebinding.yaml.j2 -------------------------------------------------------------------------------- /roles/fabric_operator_crds/templates/openshift/rbac/hlf-operator-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/templates/openshift/rbac/hlf-operator-serviceaccount.yaml -------------------------------------------------------------------------------- /roles/fabric_operator_crds/templates/openshift/role.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/templates/openshift/role.yml.j2 -------------------------------------------------------------------------------- /roles/fabric_operator_crds/templates/openshift/role_binding.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/templates/openshift/role_binding.yml.j2 -------------------------------------------------------------------------------- /roles/fabric_operator_crds/templates/openshift/security_context_constraints.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/templates/openshift/security_context_constraints.yml.j2 -------------------------------------------------------------------------------- /roles/fabric_operator_crds/templates/openshift/service.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/fabric_operator_crds/templates/openshift/service.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/README.md -------------------------------------------------------------------------------- /roles/hlfsupport_console/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/defaults/main.yml -------------------------------------------------------------------------------- /roles/hlfsupport_console/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/meta/main.yml -------------------------------------------------------------------------------- /roles/hlfsupport_console/tasks/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/tasks/create.yml -------------------------------------------------------------------------------- /roles/hlfsupport_console/tasks/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/tasks/delete.yml -------------------------------------------------------------------------------- /roles/hlfsupport_console/tasks/k8s/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/tasks/k8s/create.yml -------------------------------------------------------------------------------- /roles/hlfsupport_console/tasks/k8s/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/tasks/k8s/delete.yml -------------------------------------------------------------------------------- /roles/hlfsupport_console/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/tasks/main.yml -------------------------------------------------------------------------------- /roles/hlfsupport_console/tasks/openshift/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/tasks/openshift/create.yml -------------------------------------------------------------------------------- /roles/hlfsupport_console/tasks/openshift/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/tasks/openshift/delete.yml -------------------------------------------------------------------------------- /roles/hlfsupport_console/templates/k8s/cluster_role.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/templates/k8s/cluster_role.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_console/templates/k8s/cluster_role_binding.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/templates/k8s/cluster_role_binding.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_console/templates/k8s/console.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/templates/k8s/console.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_console/templates/k8s/image_pull_secret.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/templates/k8s/image_pull_secret.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_console/templates/k8s/operator.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/templates/k8s/operator.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_console/templates/k8s/role_binding.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/templates/k8s/role_binding.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_console/templates/openshift/cluster_role.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/templates/openshift/cluster_role.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_console/templates/openshift/cluster_role_binding.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/templates/openshift/cluster_role_binding.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_console/templates/openshift/console.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/templates/openshift/console.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_console/templates/openshift/image_pull_secret.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/templates/openshift/image_pull_secret.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_console/templates/openshift/operator.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/templates/openshift/operator.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_console/templates/openshift/security_context_constraints.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_console/templates/openshift/security_context_constraints.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_crds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/README.md -------------------------------------------------------------------------------- /roles/hlfsupport_crds/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/defaults/main.yml -------------------------------------------------------------------------------- /roles/hlfsupport_crds/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/meta/main.yml -------------------------------------------------------------------------------- /roles/hlfsupport_crds/tasks/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/tasks/create.yml -------------------------------------------------------------------------------- /roles/hlfsupport_crds/tasks/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/tasks/delete.yml -------------------------------------------------------------------------------- /roles/hlfsupport_crds/tasks/k8s/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/tasks/k8s/create.yml -------------------------------------------------------------------------------- /roles/hlfsupport_crds/tasks/k8s/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/tasks/k8s/delete.yml -------------------------------------------------------------------------------- /roles/hlfsupport_crds/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/tasks/main.yml -------------------------------------------------------------------------------- /roles/hlfsupport_crds/tasks/openshift/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/tasks/openshift/create.yml -------------------------------------------------------------------------------- /roles/hlfsupport_crds/tasks/openshift/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/tasks/openshift/delete.yml -------------------------------------------------------------------------------- /roles/hlfsupport_crds/templates/ca-crd.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/templates/ca-crd.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_crds/templates/console-crd.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/templates/console-crd.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_crds/templates/k8s/deployment.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/templates/k8s/deployment.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_crds/templates/k8s/image_pull_secret.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/templates/k8s/image_pull_secret.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_crds/templates/k8s/role.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/templates/k8s/role.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_crds/templates/k8s/role_binding.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/templates/k8s/role_binding.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_crds/templates/k8s/service.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/templates/k8s/service.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_crds/templates/openshift/deployment.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/templates/openshift/deployment.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_crds/templates/openshift/image_pull_secret.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/templates/openshift/image_pull_secret.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_crds/templates/openshift/role.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/templates/openshift/role.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_crds/templates/openshift/role_binding.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/templates/openshift/role_binding.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_crds/templates/openshift/security_context_constraints.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/templates/openshift/security_context_constraints.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_crds/templates/openshift/service.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/templates/openshift/service.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_crds/templates/orderer-crd.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/templates/orderer-crd.yml.j2 -------------------------------------------------------------------------------- /roles/hlfsupport_crds/templates/peer-crd.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/hlfsupport_crds/templates/peer-crd.yml.j2 -------------------------------------------------------------------------------- /roles/mrha_endorsing_organization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_endorsing_organization/README.md -------------------------------------------------------------------------------- /roles/mrha_endorsing_organization/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_endorsing_organization/defaults/main.yml -------------------------------------------------------------------------------- /roles/mrha_endorsing_organization/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_endorsing_organization/meta/main.yml -------------------------------------------------------------------------------- /roles/mrha_endorsing_organization/tasks/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_endorsing_organization/tasks/create.yml -------------------------------------------------------------------------------- /roles/mrha_endorsing_organization/tasks/create/primary-peer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_endorsing_organization/tasks/create/primary-peer.yml -------------------------------------------------------------------------------- /roles/mrha_endorsing_organization/tasks/create/primary-region.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_endorsing_organization/tasks/create/primary-region.yml -------------------------------------------------------------------------------- /roles/mrha_endorsing_organization/tasks/create/secondary-peer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_endorsing_organization/tasks/create/secondary-peer.yml -------------------------------------------------------------------------------- /roles/mrha_endorsing_organization/tasks/create/secondary-region.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_endorsing_organization/tasks/create/secondary-region.yml -------------------------------------------------------------------------------- /roles/mrha_endorsing_organization/tasks/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_endorsing_organization/tasks/delete.yml -------------------------------------------------------------------------------- /roles/mrha_endorsing_organization/tasks/delete/primary-peer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_endorsing_organization/tasks/delete/primary-peer.yml -------------------------------------------------------------------------------- /roles/mrha_endorsing_organization/tasks/delete/primary-region.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_endorsing_organization/tasks/delete/primary-region.yml -------------------------------------------------------------------------------- /roles/mrha_endorsing_organization/tasks/delete/secondary-peer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_endorsing_organization/tasks/delete/secondary-peer.yml -------------------------------------------------------------------------------- /roles/mrha_endorsing_organization/tasks/delete/secondary-region.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_endorsing_organization/tasks/delete/secondary-region.yml -------------------------------------------------------------------------------- /roles/mrha_endorsing_organization/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_endorsing_organization/tasks/main.yml -------------------------------------------------------------------------------- /roles/mrha_ordering_organization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_ordering_organization/README.md -------------------------------------------------------------------------------- /roles/mrha_ordering_organization/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_ordering_organization/defaults/main.yml -------------------------------------------------------------------------------- /roles/mrha_ordering_organization/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_ordering_organization/meta/main.yml -------------------------------------------------------------------------------- /roles/mrha_ordering_organization/tasks/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_ordering_organization/tasks/create.yml -------------------------------------------------------------------------------- /roles/mrha_ordering_organization/tasks/create/primary-osn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_ordering_organization/tasks/create/primary-osn.yml -------------------------------------------------------------------------------- /roles/mrha_ordering_organization/tasks/create/primary-region.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_ordering_organization/tasks/create/primary-region.yml -------------------------------------------------------------------------------- /roles/mrha_ordering_organization/tasks/create/secondary-osn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_ordering_organization/tasks/create/secondary-osn.yml -------------------------------------------------------------------------------- /roles/mrha_ordering_organization/tasks/create/secondary-region.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_ordering_organization/tasks/create/secondary-region.yml -------------------------------------------------------------------------------- /roles/mrha_ordering_organization/tasks/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_ordering_organization/tasks/delete.yml -------------------------------------------------------------------------------- /roles/mrha_ordering_organization/tasks/delete/primary-osn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_ordering_organization/tasks/delete/primary-osn.yml -------------------------------------------------------------------------------- /roles/mrha_ordering_organization/tasks/delete/primary-region.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_ordering_organization/tasks/delete/primary-region.yml -------------------------------------------------------------------------------- /roles/mrha_ordering_organization/tasks/delete/secondary-osn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_ordering_organization/tasks/delete/secondary-osn.yml -------------------------------------------------------------------------------- /roles/mrha_ordering_organization/tasks/delete/secondary-region.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_ordering_organization/tasks/delete/secondary-region.yml -------------------------------------------------------------------------------- /roles/mrha_ordering_organization/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mrha_ordering_organization/tasks/main.yml -------------------------------------------------------------------------------- /roles/mzha_endorsing_organization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mzha_endorsing_organization/README.md -------------------------------------------------------------------------------- /roles/mzha_endorsing_organization/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mzha_endorsing_organization/defaults/main.yml -------------------------------------------------------------------------------- /roles/mzha_endorsing_organization/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mzha_endorsing_organization/meta/main.yml -------------------------------------------------------------------------------- /roles/mzha_endorsing_organization/tasks/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mzha_endorsing_organization/tasks/create.yml -------------------------------------------------------------------------------- /roles/mzha_endorsing_organization/tasks/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mzha_endorsing_organization/tasks/delete.yml -------------------------------------------------------------------------------- /roles/mzha_endorsing_organization/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mzha_endorsing_organization/tasks/main.yml -------------------------------------------------------------------------------- /roles/mzha_ordering_organization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mzha_ordering_organization/README.md -------------------------------------------------------------------------------- /roles/mzha_ordering_organization/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mzha_ordering_organization/defaults/main.yml -------------------------------------------------------------------------------- /roles/mzha_ordering_organization/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mzha_ordering_organization/meta/main.yml -------------------------------------------------------------------------------- /roles/mzha_ordering_organization/tasks/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mzha_ordering_organization/tasks/create.yml -------------------------------------------------------------------------------- /roles/mzha_ordering_organization/tasks/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mzha_ordering_organization/tasks/delete.yml -------------------------------------------------------------------------------- /roles/mzha_ordering_organization/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/mzha_ordering_organization/tasks/main.yml -------------------------------------------------------------------------------- /roles/ordering_organization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/ordering_organization/README.md -------------------------------------------------------------------------------- /roles/ordering_organization/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/ordering_organization/defaults/main.yml -------------------------------------------------------------------------------- /roles/ordering_organization/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/ordering_organization/meta/main.yml -------------------------------------------------------------------------------- /roles/ordering_organization/tasks/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/ordering_organization/tasks/create.yml -------------------------------------------------------------------------------- /roles/ordering_organization/tasks/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/ordering_organization/tasks/delete.yml -------------------------------------------------------------------------------- /roles/ordering_organization/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/roles/ordering_organization/tasks/main.yml -------------------------------------------------------------------------------- /tests/integration/integration_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tests/integration/integration_config.yml -------------------------------------------------------------------------------- /tests/integration/targets/it_certificate_authority/tasks/assertions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tests/integration/targets/it_certificate_authority/tasks/assertions.yml -------------------------------------------------------------------------------- /tests/integration/targets/it_certificate_authority/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tests/integration/targets/it_certificate_authority/tasks/main.yml -------------------------------------------------------------------------------- /tests/integration/targets/it_endorsing_organization/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tests/integration/targets/it_endorsing_organization/tasks/main.yml -------------------------------------------------------------------------------- /tests/integration/targets/it_external_ordering_service/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tests/integration/targets/it_external_ordering_service/tasks/main.yml -------------------------------------------------------------------------------- /tests/integration/targets/it_external_ordering_service/templates/one_node_ordering_service.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tests/integration/targets/it_external_ordering_service/templates/one_node_ordering_service.json.j2 -------------------------------------------------------------------------------- /tests/integration/targets/it_ordering_organization/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tests/integration/targets/it_ordering_organization/tasks/main.yml -------------------------------------------------------------------------------- /tutorial/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | *.bin 3 | -------------------------------------------------------------------------------- /tutorial/01-create-ordering-organization-components.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/01-create-ordering-organization-components.yml -------------------------------------------------------------------------------- /tutorial/02-create-endorsing-organization-components.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/02-create-endorsing-organization-components.yml -------------------------------------------------------------------------------- /tutorial/03-export-organization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/03-export-organization.yml -------------------------------------------------------------------------------- /tutorial/04-import-organization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/04-import-organization.yml -------------------------------------------------------------------------------- /tutorial/05-enable-capabilities.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/05-enable-capabilities.yml -------------------------------------------------------------------------------- /tutorial/06-add-organization-to-consortium.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/06-add-organization-to-consortium.yml -------------------------------------------------------------------------------- /tutorial/07-export-ordering-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/07-export-ordering-service.yml -------------------------------------------------------------------------------- /tutorial/08-import-ordering-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/08-import-ordering-service.yml -------------------------------------------------------------------------------- /tutorial/09-admins-policy.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/09-admins-policy.json.j2 -------------------------------------------------------------------------------- /tutorial/09-create-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/09-create-channel.yml -------------------------------------------------------------------------------- /tutorial/09-endorsement-policy.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/09-endorsement-policy.json.j2 -------------------------------------------------------------------------------- /tutorial/09-lifecycle-endorsement-policy.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/09-lifecycle-endorsement-policy.json.j2 -------------------------------------------------------------------------------- /tutorial/09-readers-policy.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/09-readers-policy.json.j2 -------------------------------------------------------------------------------- /tutorial/09-writers-policy.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/09-writers-policy.json.j2 -------------------------------------------------------------------------------- /tutorial/10-join-peer-to-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/10-join-peer-to-channel.yml -------------------------------------------------------------------------------- /tutorial/11-add-anchor-peer-to-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/11-add-anchor-peer-to-channel.yml -------------------------------------------------------------------------------- /tutorial/12-create-endorsing-organization-components.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/12-create-endorsing-organization-components.yml -------------------------------------------------------------------------------- /tutorial/13-export-organization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/13-export-organization.yml -------------------------------------------------------------------------------- /tutorial/14-import-organization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/14-import-organization.yml -------------------------------------------------------------------------------- /tutorial/15-add-organization-to-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/15-add-organization-to-channel.yml -------------------------------------------------------------------------------- /tutorial/15-admins-policy.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/15-admins-policy.json.j2 -------------------------------------------------------------------------------- /tutorial/15-endorsement-policy.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/15-endorsement-policy.json.j2 -------------------------------------------------------------------------------- /tutorial/15-lifecycle-endorsement-policy.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/15-lifecycle-endorsement-policy.json.j2 -------------------------------------------------------------------------------- /tutorial/15-readers-policy.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/15-readers-policy.json.j2 -------------------------------------------------------------------------------- /tutorial/15-writers-policy.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/15-writers-policy.json.j2 -------------------------------------------------------------------------------- /tutorial/16-import-ordering-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/16-import-ordering-service.yml -------------------------------------------------------------------------------- /tutorial/17-join-peer-to-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/17-join-peer-to-channel.yml -------------------------------------------------------------------------------- /tutorial/18-add-anchor-peer-to-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/18-add-anchor-peer-to-channel.yml -------------------------------------------------------------------------------- /tutorial/19-install-and-approve-chaincode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/19-install-and-approve-chaincode.yml -------------------------------------------------------------------------------- /tutorial/20-install-and-approve-chaincode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/20-install-and-approve-chaincode.yml -------------------------------------------------------------------------------- /tutorial/21-commit-chaincode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/21-commit-chaincode.yml -------------------------------------------------------------------------------- /tutorial/22-register-application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/22-register-application.yml -------------------------------------------------------------------------------- /tutorial/23-register-application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/23-register-application.yml -------------------------------------------------------------------------------- /tutorial/97-delete-endorsing-organization-components.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/97-delete-endorsing-organization-components.yml -------------------------------------------------------------------------------- /tutorial/98-delete-endorsing-organization-components.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/98-delete-endorsing-organization-components.yml -------------------------------------------------------------------------------- /tutorial/99-delete-ordering-organization-components.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/99-delete-ordering-organization-components.yml -------------------------------------------------------------------------------- /tutorial/build_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/build_network.sh -------------------------------------------------------------------------------- /tutorial/common-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/common-vars.yml -------------------------------------------------------------------------------- /tutorial/deploy_smart_contract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/deploy_smart_contract.sh -------------------------------------------------------------------------------- /tutorial/fabcar@1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/fabcar@1.0.0.tgz -------------------------------------------------------------------------------- /tutorial/join_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/join_network.sh -------------------------------------------------------------------------------- /tutorial/ordering-org-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/ordering-org-vars.yml -------------------------------------------------------------------------------- /tutorial/org1-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/org1-vars.yml -------------------------------------------------------------------------------- /tutorial/org2-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/org2-vars.yml -------------------------------------------------------------------------------- /tutorial/v1.x/01-create-ordering-organization-components.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/01-create-ordering-organization-components.yml -------------------------------------------------------------------------------- /tutorial/v1.x/02-create-endorsing-organization-components.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/02-create-endorsing-organization-components.yml -------------------------------------------------------------------------------- /tutorial/v1.x/03-export-organization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/03-export-organization.yml -------------------------------------------------------------------------------- /tutorial/v1.x/04-import-organization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/04-import-organization.yml -------------------------------------------------------------------------------- /tutorial/v1.x/05-add-organization-to-consortium.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/05-add-organization-to-consortium.yml -------------------------------------------------------------------------------- /tutorial/v1.x/06-export-ordering-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/06-export-ordering-service.yml -------------------------------------------------------------------------------- /tutorial/v1.x/07-import-ordering-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/07-import-ordering-service.yml -------------------------------------------------------------------------------- /tutorial/v1.x/08-admins-policy.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/08-admins-policy.json.j2 -------------------------------------------------------------------------------- /tutorial/v1.x/08-create-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/08-create-channel.yml -------------------------------------------------------------------------------- /tutorial/v1.x/08-readers-policy.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/08-readers-policy.json.j2 -------------------------------------------------------------------------------- /tutorial/v1.x/08-writers-policy.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/08-writers-policy.json.j2 -------------------------------------------------------------------------------- /tutorial/v1.x/09-join-peer-to-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/09-join-peer-to-channel.yml -------------------------------------------------------------------------------- /tutorial/v1.x/10-add-anchor-peer-to-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/10-add-anchor-peer-to-channel.yml -------------------------------------------------------------------------------- /tutorial/v1.x/11-create-endorsing-organization-components.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/11-create-endorsing-organization-components.yml -------------------------------------------------------------------------------- /tutorial/v1.x/12-export-organization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/12-export-organization.yml -------------------------------------------------------------------------------- /tutorial/v1.x/13-import-organization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/13-import-organization.yml -------------------------------------------------------------------------------- /tutorial/v1.x/14-add-organization-to-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/14-add-organization-to-channel.yml -------------------------------------------------------------------------------- /tutorial/v1.x/14-admins-policy.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/14-admins-policy.json.j2 -------------------------------------------------------------------------------- /tutorial/v1.x/14-readers-policy.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/14-readers-policy.json.j2 -------------------------------------------------------------------------------- /tutorial/v1.x/14-writers-policy.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/14-writers-policy.json.j2 -------------------------------------------------------------------------------- /tutorial/v1.x/15-import-ordering-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/15-import-ordering-service.yml -------------------------------------------------------------------------------- /tutorial/v1.x/16-join-peer-to-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/16-join-peer-to-channel.yml -------------------------------------------------------------------------------- /tutorial/v1.x/17-add-anchor-peer-to-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/17-add-anchor-peer-to-channel.yml -------------------------------------------------------------------------------- /tutorial/v1.x/18-install-chaincode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/18-install-chaincode.yml -------------------------------------------------------------------------------- /tutorial/v1.x/19-install-chaincode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/19-install-chaincode.yml -------------------------------------------------------------------------------- /tutorial/v1.x/20-instantiate-chaincode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/20-instantiate-chaincode.yml -------------------------------------------------------------------------------- /tutorial/v1.x/21-register-application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/21-register-application.yml -------------------------------------------------------------------------------- /tutorial/v1.x/22-register-application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/22-register-application.yml -------------------------------------------------------------------------------- /tutorial/v1.x/97-delete-endorsing-organization-components.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/97-delete-endorsing-organization-components.yml -------------------------------------------------------------------------------- /tutorial/v1.x/98-delete-endorsing-organization-components.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/98-delete-endorsing-organization-components.yml -------------------------------------------------------------------------------- /tutorial/v1.x/99-delete-ordering-organization-components.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/99-delete-ordering-organization-components.yml -------------------------------------------------------------------------------- /tutorial/v1.x/build_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/build_network.sh -------------------------------------------------------------------------------- /tutorial/v1.x/common-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/common-vars.yml -------------------------------------------------------------------------------- /tutorial/v1.x/deploy_smart_contract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/deploy_smart_contract.sh -------------------------------------------------------------------------------- /tutorial/v1.x/fabcar@1.0.0.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/fabcar@1.0.0.cds -------------------------------------------------------------------------------- /tutorial/v1.x/join_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/join_network.sh -------------------------------------------------------------------------------- /tutorial/v1.x/ordering-org-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/ordering-org-vars.yml -------------------------------------------------------------------------------- /tutorial/v1.x/org1-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/org1-vars.yml -------------------------------------------------------------------------------- /tutorial/v1.x/org2-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Blockchain/ansible-collection/HEAD/tutorial/v1.x/org2-vars.yml --------------------------------------------------------------------------------