├── .ansible-lint ├── .flake8 ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── files │ ├── ansible.cfg │ └── galaxy.yml.j2 └── workflows │ ├── issue-close-inactive.yml │ ├── issue-find-inactive.yml │ ├── issue-labeled.yml │ ├── issue-remove-inactive.yml │ ├── pre-commit.yml │ ├── release.yml │ └── update_pre_commit.yml ├── .gitignore ├── .markdownlint.yml ├── .mlc_config.json ├── .pre-commit-config.yaml ├── .yamllint.yml ├── CHANGELOG.rst ├── COPYING ├── LICENSE ├── README.md ├── STANDARDS.md ├── changelogs ├── .plugin-cache.yaml ├── changelog.yaml ├── ci_fixes.yml ├── config.yaml └── fragments │ ├── .gitkeep │ ├── 400-collection-upload.yml │ ├── add_new_ci_workflow.yml │ ├── ah_host_env.yml │ ├── ansible_config.yml │ ├── api_prefix_with_resource_provider.yml │ ├── argspec.yml │ ├── async.yml │ ├── bug_collection_delete.yml │ ├── bug_galaxy_path_prefix.yml │ ├── collection_overwrite_existing.yml │ ├── collection_remote.yml │ ├── collection_remote_requirements.yml │ ├── collection_repos.yml │ ├── depreciation.yml │ ├── ee_repos.yml │ ├── flake8bug.yml │ ├── global_proxy.yml │ ├── grou_async_timeout.yml │ ├── group_roles.yml │ ├── offline_sync.yml │ ├── remove_bindep.yml │ ├── removed_modules.yml │ ├── repositories.yml │ ├── request_timeout.yml │ ├── reroute.yml │ ├── roles_token.yml │ ├── source_build.yml │ ├── token_auth.yml │ ├── update-github-actions.yml │ └── update_new_ci_workflow.yml ├── galaxy.yml ├── meta └── runtime.yml ├── roles ├── ansible_config │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── ansible.cfg.j2 │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── config.yml ├── collection │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ └── test.yml ├── collection_remote │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── repositories.yml ├── collection_repository │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── repositories.yml ├── collection_repository_sync │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── repositories.yml ├── dispatch │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── configs │ │ ├── images.yml │ │ ├── registries.yml │ │ └── repositories.yml │ │ └── test.yml ├── ee_image │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── ee_images.yml ├── ee_namespace │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── ee_namespaces.yml ├── ee_registry │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── ee_registries.yml ├── ee_registry_index │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── ee_registries.yml ├── ee_registry_sync │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── ee_registries.yml ├── ee_repository │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── ee_repositories.yml ├── ee_repository_sync │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── ee_repositories.yml ├── group │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── groups.yml ├── group_roles │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── group_roles.yml ├── namespace │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── namespaces.yml ├── offline_sync │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ ├── ansible.cfg.j2 │ │ ├── collections.yml.j2 │ │ └── collections_list.yml.j2 │ └── tests │ │ └── test.yml ├── publish │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── collections.yml ├── repository │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── repositories.yml ├── repository_sync │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── repositories.yml ├── role │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── argument_specs.yml │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── tests │ │ ├── test.yml │ │ └── vars │ │ └── roles.yml └── user │ ├── README.md │ ├── defaults │ └── main.yml │ ├── meta │ ├── argument_specs.yml │ └── main.yml │ ├── tasks │ └── main.yml │ └── tests │ ├── test.yml │ └── vars │ └── users.yml └── tests ├── README.md ├── collections └── requirements.yml ├── config.yml ├── pah_configure.yml ├── playbooks ├── ah_configs │ ├── ah_ansible_config.yml │ ├── ah_auth.yml │ ├── ah_collections.yml │ ├── ah_ee_repositories.yml │ ├── ah_group_roles.yml │ ├── ah_namespaces.yml │ ├── ah_repository.yml │ ├── ah_roles.yml │ └── ah_user.yml └── files │ └── collection_requirement_file.yml ├── tasks ├── files │ └── ansible.cfg.example ├── manage_ansible_config.yml ├── manage_collection_namespaces.yml ├── manage_collection_publish.yml ├── manage_ee_images.yml ├── manage_ee_namespaces.yml ├── manage_ee_registries.yml ├── manage_ee_registry_indices.yml ├── manage_ee_registry_sync.yml ├── manage_ee_repositories.yml ├── manage_ee_repository_sync.yml ├── manage_groups.yml └── manage_users.yml └── vars ├── ah_ansible_config.yml ├── ah_collection_namespaces.yml ├── ah_collection_publish.yml ├── ah_ee_images.yml ├── ah_ee_namespaces.yml ├── ah_ee_registries.yml ├── ah_ee_registry_indices.yml ├── ah_ee_registry_sync.yml ├── ah_ee_repositories.yml ├── ah_ee_repository_sync.yml ├── ah_groups.yml ├── ah_users.yml └── pah_vars.yml /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/files/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.github/files/ansible.cfg -------------------------------------------------------------------------------- /.github/files/galaxy.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.github/files/galaxy.yml.j2 -------------------------------------------------------------------------------- /.github/workflows/issue-close-inactive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.github/workflows/issue-close-inactive.yml -------------------------------------------------------------------------------- /.github/workflows/issue-find-inactive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.github/workflows/issue-find-inactive.yml -------------------------------------------------------------------------------- /.github/workflows/issue-labeled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.github/workflows/issue-labeled.yml -------------------------------------------------------------------------------- /.github/workflows/issue-remove-inactive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.github/workflows/issue-remove-inactive.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/update_pre_commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.github/workflows/update_pre_commit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.markdownlint.yml -------------------------------------------------------------------------------- /.mlc_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.mlc_config.json -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/README.md -------------------------------------------------------------------------------- /STANDARDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/STANDARDS.md -------------------------------------------------------------------------------- /changelogs/.plugin-cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/.plugin-cache.yaml -------------------------------------------------------------------------------- /changelogs/changelog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/changelog.yaml -------------------------------------------------------------------------------- /changelogs/ci_fixes.yml: -------------------------------------------------------------------------------- 1 | --- 2 | minor_changes: 3 | - Fixing errors in CI 4 | ... 5 | -------------------------------------------------------------------------------- /changelogs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/config.yaml -------------------------------------------------------------------------------- /changelogs/fragments/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /changelogs/fragments/400-collection-upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/400-collection-upload.yml -------------------------------------------------------------------------------- /changelogs/fragments/add_new_ci_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/add_new_ci_workflow.yml -------------------------------------------------------------------------------- /changelogs/fragments/ah_host_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/ah_host_env.yml -------------------------------------------------------------------------------- /changelogs/fragments/ansible_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/ansible_config.yml -------------------------------------------------------------------------------- /changelogs/fragments/api_prefix_with_resource_provider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/api_prefix_with_resource_provider.yml -------------------------------------------------------------------------------- /changelogs/fragments/argspec.yml: -------------------------------------------------------------------------------- 1 | --- 2 | minor_changes: 3 | - Add arg spec to all roles 4 | ... 5 | -------------------------------------------------------------------------------- /changelogs/fragments/async.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/async.yml -------------------------------------------------------------------------------- /changelogs/fragments/bug_collection_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/bug_collection_delete.yml -------------------------------------------------------------------------------- /changelogs/fragments/bug_galaxy_path_prefix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/bug_galaxy_path_prefix.yml -------------------------------------------------------------------------------- /changelogs/fragments/collection_overwrite_existing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/collection_overwrite_existing.yml -------------------------------------------------------------------------------- /changelogs/fragments/collection_remote.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/collection_remote.yml -------------------------------------------------------------------------------- /changelogs/fragments/collection_remote_requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/collection_remote_requirements.yml -------------------------------------------------------------------------------- /changelogs/fragments/collection_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/collection_repos.yml -------------------------------------------------------------------------------- /changelogs/fragments/depreciation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/depreciation.yml -------------------------------------------------------------------------------- /changelogs/fragments/ee_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/ee_repos.yml -------------------------------------------------------------------------------- /changelogs/fragments/flake8bug.yml: -------------------------------------------------------------------------------- 1 | --- 2 | bugfixes: 3 | - Fixed a flake8 failure with comparison of types. 4 | ... 5 | -------------------------------------------------------------------------------- /changelogs/fragments/global_proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/global_proxy.yml -------------------------------------------------------------------------------- /changelogs/fragments/grou_async_timeout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/grou_async_timeout.yml -------------------------------------------------------------------------------- /changelogs/fragments/group_roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/group_roles.yml -------------------------------------------------------------------------------- /changelogs/fragments/offline_sync.yml: -------------------------------------------------------------------------------- 1 | --- 2 | minor_changes: 3 | - added offline_sync role 4 | ... 5 | -------------------------------------------------------------------------------- /changelogs/fragments/remove_bindep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/remove_bindep.yml -------------------------------------------------------------------------------- /changelogs/fragments/removed_modules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/removed_modules.yml -------------------------------------------------------------------------------- /changelogs/fragments/repositories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/repositories.yml -------------------------------------------------------------------------------- /changelogs/fragments/request_timeout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/request_timeout.yml -------------------------------------------------------------------------------- /changelogs/fragments/reroute.yml: -------------------------------------------------------------------------------- 1 | --- 2 | major_changes: 3 | - redirect all modules to ansible.hub. 4 | -------------------------------------------------------------------------------- /changelogs/fragments/roles_token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/roles_token.yml -------------------------------------------------------------------------------- /changelogs/fragments/source_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/source_build.yml -------------------------------------------------------------------------------- /changelogs/fragments/token_auth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/token_auth.yml -------------------------------------------------------------------------------- /changelogs/fragments/update-github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/update-github-actions.yml -------------------------------------------------------------------------------- /changelogs/fragments/update_new_ci_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/changelogs/fragments/update_new_ci_workflow.yml -------------------------------------------------------------------------------- /galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/galaxy.yml -------------------------------------------------------------------------------- /meta/runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/meta/runtime.yml -------------------------------------------------------------------------------- /roles/ansible_config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ansible_config/README.md -------------------------------------------------------------------------------- /roles/ansible_config/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ansible_config/defaults/main.yml -------------------------------------------------------------------------------- /roles/ansible_config/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ansible_config/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/ansible_config/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ansible_config/meta/main.yml -------------------------------------------------------------------------------- /roles/ansible_config/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ansible_config/tasks/main.yml -------------------------------------------------------------------------------- /roles/ansible_config/templates/ansible.cfg.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ansible_config/templates/ansible.cfg.j2 -------------------------------------------------------------------------------- /roles/ansible_config/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ansible_config/tests/test.yml -------------------------------------------------------------------------------- /roles/ansible_config/tests/vars/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ansible_config/tests/vars/config.yml -------------------------------------------------------------------------------- /roles/collection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection/README.md -------------------------------------------------------------------------------- /roles/collection/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection/defaults/main.yml -------------------------------------------------------------------------------- /roles/collection/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/collection/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection/meta/main.yml -------------------------------------------------------------------------------- /roles/collection/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection/tasks/main.yml -------------------------------------------------------------------------------- /roles/collection/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection/tests/test.yml -------------------------------------------------------------------------------- /roles/collection_remote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_remote/README.md -------------------------------------------------------------------------------- /roles/collection_remote/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_remote/defaults/main.yml -------------------------------------------------------------------------------- /roles/collection_remote/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_remote/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/collection_remote/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_remote/meta/main.yml -------------------------------------------------------------------------------- /roles/collection_remote/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_remote/tasks/main.yml -------------------------------------------------------------------------------- /roles/collection_remote/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_remote/tests/test.yml -------------------------------------------------------------------------------- /roles/collection_remote/tests/vars/repositories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_remote/tests/vars/repositories.yml -------------------------------------------------------------------------------- /roles/collection_repository/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_repository/README.md -------------------------------------------------------------------------------- /roles/collection_repository/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_repository/defaults/main.yml -------------------------------------------------------------------------------- /roles/collection_repository/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_repository/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/collection_repository/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_repository/meta/main.yml -------------------------------------------------------------------------------- /roles/collection_repository/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_repository/tasks/main.yml -------------------------------------------------------------------------------- /roles/collection_repository/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_repository/tests/test.yml -------------------------------------------------------------------------------- /roles/collection_repository/tests/vars/repositories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_repository/tests/vars/repositories.yml -------------------------------------------------------------------------------- /roles/collection_repository_sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_repository_sync/README.md -------------------------------------------------------------------------------- /roles/collection_repository_sync/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_repository_sync/defaults/main.yml -------------------------------------------------------------------------------- /roles/collection_repository_sync/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_repository_sync/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/collection_repository_sync/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_repository_sync/meta/main.yml -------------------------------------------------------------------------------- /roles/collection_repository_sync/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_repository_sync/tasks/main.yml -------------------------------------------------------------------------------- /roles/collection_repository_sync/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_repository_sync/tests/test.yml -------------------------------------------------------------------------------- /roles/collection_repository_sync/tests/vars/repositories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/collection_repository_sync/tests/vars/repositories.yml -------------------------------------------------------------------------------- /roles/dispatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/dispatch/README.md -------------------------------------------------------------------------------- /roles/dispatch/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/dispatch/defaults/main.yml -------------------------------------------------------------------------------- /roles/dispatch/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/dispatch/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/dispatch/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/dispatch/meta/main.yml -------------------------------------------------------------------------------- /roles/dispatch/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/dispatch/tasks/main.yml -------------------------------------------------------------------------------- /roles/dispatch/tests/configs/images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/dispatch/tests/configs/images.yml -------------------------------------------------------------------------------- /roles/dispatch/tests/configs/registries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/dispatch/tests/configs/registries.yml -------------------------------------------------------------------------------- /roles/dispatch/tests/configs/repositories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/dispatch/tests/configs/repositories.yml -------------------------------------------------------------------------------- /roles/dispatch/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/dispatch/tests/test.yml -------------------------------------------------------------------------------- /roles/ee_image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_image/README.md -------------------------------------------------------------------------------- /roles/ee_image/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_image/defaults/main.yml -------------------------------------------------------------------------------- /roles/ee_image/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_image/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/ee_image/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_image/meta/main.yml -------------------------------------------------------------------------------- /roles/ee_image/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_image/tasks/main.yml -------------------------------------------------------------------------------- /roles/ee_image/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_image/tests/test.yml -------------------------------------------------------------------------------- /roles/ee_image/tests/vars/ee_images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_image/tests/vars/ee_images.yml -------------------------------------------------------------------------------- /roles/ee_namespace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_namespace/README.md -------------------------------------------------------------------------------- /roles/ee_namespace/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_namespace/defaults/main.yml -------------------------------------------------------------------------------- /roles/ee_namespace/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_namespace/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/ee_namespace/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_namespace/meta/main.yml -------------------------------------------------------------------------------- /roles/ee_namespace/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_namespace/tasks/main.yml -------------------------------------------------------------------------------- /roles/ee_namespace/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_namespace/tests/test.yml -------------------------------------------------------------------------------- /roles/ee_namespace/tests/vars/ee_namespaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_namespace/tests/vars/ee_namespaces.yml -------------------------------------------------------------------------------- /roles/ee_registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry/README.md -------------------------------------------------------------------------------- /roles/ee_registry/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry/defaults/main.yml -------------------------------------------------------------------------------- /roles/ee_registry/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/ee_registry/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry/meta/main.yml -------------------------------------------------------------------------------- /roles/ee_registry/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry/tasks/main.yml -------------------------------------------------------------------------------- /roles/ee_registry/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry/tests/test.yml -------------------------------------------------------------------------------- /roles/ee_registry/tests/vars/ee_registries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry/tests/vars/ee_registries.yml -------------------------------------------------------------------------------- /roles/ee_registry_index/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry_index/README.md -------------------------------------------------------------------------------- /roles/ee_registry_index/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry_index/defaults/main.yml -------------------------------------------------------------------------------- /roles/ee_registry_index/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry_index/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/ee_registry_index/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry_index/meta/main.yml -------------------------------------------------------------------------------- /roles/ee_registry_index/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry_index/tasks/main.yml -------------------------------------------------------------------------------- /roles/ee_registry_index/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry_index/tests/test.yml -------------------------------------------------------------------------------- /roles/ee_registry_index/tests/vars/ee_registries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry_index/tests/vars/ee_registries.yml -------------------------------------------------------------------------------- /roles/ee_registry_sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry_sync/README.md -------------------------------------------------------------------------------- /roles/ee_registry_sync/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry_sync/defaults/main.yml -------------------------------------------------------------------------------- /roles/ee_registry_sync/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry_sync/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/ee_registry_sync/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry_sync/meta/main.yml -------------------------------------------------------------------------------- /roles/ee_registry_sync/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry_sync/tasks/main.yml -------------------------------------------------------------------------------- /roles/ee_registry_sync/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry_sync/tests/test.yml -------------------------------------------------------------------------------- /roles/ee_registry_sync/tests/vars/ee_registries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_registry_sync/tests/vars/ee_registries.yml -------------------------------------------------------------------------------- /roles/ee_repository/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_repository/README.md -------------------------------------------------------------------------------- /roles/ee_repository/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_repository/defaults/main.yml -------------------------------------------------------------------------------- /roles/ee_repository/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_repository/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/ee_repository/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_repository/meta/main.yml -------------------------------------------------------------------------------- /roles/ee_repository/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_repository/tasks/main.yml -------------------------------------------------------------------------------- /roles/ee_repository/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_repository/tests/test.yml -------------------------------------------------------------------------------- /roles/ee_repository/tests/vars/ee_repositories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_repository/tests/vars/ee_repositories.yml -------------------------------------------------------------------------------- /roles/ee_repository_sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_repository_sync/README.md -------------------------------------------------------------------------------- /roles/ee_repository_sync/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_repository_sync/defaults/main.yml -------------------------------------------------------------------------------- /roles/ee_repository_sync/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_repository_sync/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/ee_repository_sync/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_repository_sync/meta/main.yml -------------------------------------------------------------------------------- /roles/ee_repository_sync/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_repository_sync/tasks/main.yml -------------------------------------------------------------------------------- /roles/ee_repository_sync/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_repository_sync/tests/test.yml -------------------------------------------------------------------------------- /roles/ee_repository_sync/tests/vars/ee_repositories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/ee_repository_sync/tests/vars/ee_repositories.yml -------------------------------------------------------------------------------- /roles/group/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/group/README.md -------------------------------------------------------------------------------- /roles/group/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/group/defaults/main.yml -------------------------------------------------------------------------------- /roles/group/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/group/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/group/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/group/meta/main.yml -------------------------------------------------------------------------------- /roles/group/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/group/tasks/main.yml -------------------------------------------------------------------------------- /roles/group/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/group/tests/test.yml -------------------------------------------------------------------------------- /roles/group/tests/vars/groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/group/tests/vars/groups.yml -------------------------------------------------------------------------------- /roles/group_roles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/group_roles/README.md -------------------------------------------------------------------------------- /roles/group_roles/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/group_roles/defaults/main.yml -------------------------------------------------------------------------------- /roles/group_roles/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/group_roles/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/group_roles/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/group_roles/meta/main.yml -------------------------------------------------------------------------------- /roles/group_roles/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/group_roles/tasks/main.yml -------------------------------------------------------------------------------- /roles/group_roles/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/group_roles/tests/test.yml -------------------------------------------------------------------------------- /roles/group_roles/tests/vars/group_roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/group_roles/tests/vars/group_roles.yml -------------------------------------------------------------------------------- /roles/namespace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/namespace/README.md -------------------------------------------------------------------------------- /roles/namespace/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/namespace/defaults/main.yml -------------------------------------------------------------------------------- /roles/namespace/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/namespace/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/namespace/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/namespace/meta/main.yml -------------------------------------------------------------------------------- /roles/namespace/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/namespace/tasks/main.yml -------------------------------------------------------------------------------- /roles/namespace/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/namespace/tests/test.yml -------------------------------------------------------------------------------- /roles/namespace/tests/vars/namespaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/namespace/tests/vars/namespaces.yml -------------------------------------------------------------------------------- /roles/offline_sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/offline_sync/README.md -------------------------------------------------------------------------------- /roles/offline_sync/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/offline_sync/defaults/main.yml -------------------------------------------------------------------------------- /roles/offline_sync/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/offline_sync/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/offline_sync/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/offline_sync/meta/main.yml -------------------------------------------------------------------------------- /roles/offline_sync/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/offline_sync/tasks/main.yml -------------------------------------------------------------------------------- /roles/offline_sync/templates/ansible.cfg.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/offline_sync/templates/ansible.cfg.j2 -------------------------------------------------------------------------------- /roles/offline_sync/templates/collections.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/offline_sync/templates/collections.yml.j2 -------------------------------------------------------------------------------- /roles/offline_sync/templates/collections_list.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/offline_sync/templates/collections_list.yml.j2 -------------------------------------------------------------------------------- /roles/offline_sync/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/offline_sync/tests/test.yml -------------------------------------------------------------------------------- /roles/publish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/publish/README.md -------------------------------------------------------------------------------- /roles/publish/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/publish/defaults/main.yml -------------------------------------------------------------------------------- /roles/publish/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/publish/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/publish/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/publish/meta/main.yml -------------------------------------------------------------------------------- /roles/publish/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/publish/tasks/main.yml -------------------------------------------------------------------------------- /roles/publish/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/publish/tests/test.yml -------------------------------------------------------------------------------- /roles/publish/tests/vars/collections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/publish/tests/vars/collections.yml -------------------------------------------------------------------------------- /roles/repository/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/repository/README.md -------------------------------------------------------------------------------- /roles/repository/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/repository/defaults/main.yml -------------------------------------------------------------------------------- /roles/repository/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/repository/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/repository/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/repository/meta/main.yml -------------------------------------------------------------------------------- /roles/repository/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/repository/tasks/main.yml -------------------------------------------------------------------------------- /roles/repository/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/repository/tests/test.yml -------------------------------------------------------------------------------- /roles/repository/tests/vars/repositories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/repository/tests/vars/repositories.yml -------------------------------------------------------------------------------- /roles/repository_sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/repository_sync/README.md -------------------------------------------------------------------------------- /roles/repository_sync/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/repository_sync/defaults/main.yml -------------------------------------------------------------------------------- /roles/repository_sync/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/repository_sync/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/repository_sync/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/repository_sync/meta/main.yml -------------------------------------------------------------------------------- /roles/repository_sync/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/repository_sync/tasks/main.yml -------------------------------------------------------------------------------- /roles/repository_sync/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/repository_sync/tests/test.yml -------------------------------------------------------------------------------- /roles/repository_sync/tests/vars/repositories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/repository_sync/tests/vars/repositories.yml -------------------------------------------------------------------------------- /roles/role/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/role/README.md -------------------------------------------------------------------------------- /roles/role/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/role/defaults/main.yml -------------------------------------------------------------------------------- /roles/role/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/role/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/role/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/role/meta/main.yml -------------------------------------------------------------------------------- /roles/role/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/role/tasks/main.yml -------------------------------------------------------------------------------- /roles/role/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/role/tests/test.yml -------------------------------------------------------------------------------- /roles/role/tests/vars/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/role/tests/vars/roles.yml -------------------------------------------------------------------------------- /roles/user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/user/README.md -------------------------------------------------------------------------------- /roles/user/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/user/defaults/main.yml -------------------------------------------------------------------------------- /roles/user/meta/argument_specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/user/meta/argument_specs.yml -------------------------------------------------------------------------------- /roles/user/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/user/meta/main.yml -------------------------------------------------------------------------------- /roles/user/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/user/tasks/main.yml -------------------------------------------------------------------------------- /roles/user/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/user/tests/test.yml -------------------------------------------------------------------------------- /roles/user/tests/vars/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/roles/user/tests/vars/users.yml -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/collections/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/collections/requirements.yml -------------------------------------------------------------------------------- /tests/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/config.yml -------------------------------------------------------------------------------- /tests/pah_configure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/pah_configure.yml -------------------------------------------------------------------------------- /tests/playbooks/ah_configs/ah_ansible_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/playbooks/ah_configs/ah_ansible_config.yml -------------------------------------------------------------------------------- /tests/playbooks/ah_configs/ah_auth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/playbooks/ah_configs/ah_auth.yml -------------------------------------------------------------------------------- /tests/playbooks/ah_configs/ah_collections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/playbooks/ah_configs/ah_collections.yml -------------------------------------------------------------------------------- /tests/playbooks/ah_configs/ah_ee_repositories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/playbooks/ah_configs/ah_ee_repositories.yml -------------------------------------------------------------------------------- /tests/playbooks/ah_configs/ah_group_roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/playbooks/ah_configs/ah_group_roles.yml -------------------------------------------------------------------------------- /tests/playbooks/ah_configs/ah_namespaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/playbooks/ah_configs/ah_namespaces.yml -------------------------------------------------------------------------------- /tests/playbooks/ah_configs/ah_repository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/playbooks/ah_configs/ah_repository.yml -------------------------------------------------------------------------------- /tests/playbooks/ah_configs/ah_roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/playbooks/ah_configs/ah_roles.yml -------------------------------------------------------------------------------- /tests/playbooks/ah_configs/ah_user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/playbooks/ah_configs/ah_user.yml -------------------------------------------------------------------------------- /tests/playbooks/files/collection_requirement_file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/playbooks/files/collection_requirement_file.yml -------------------------------------------------------------------------------- /tests/tasks/files/ansible.cfg.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/tasks/files/ansible.cfg.example -------------------------------------------------------------------------------- /tests/tasks/manage_ansible_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/tasks/manage_ansible_config.yml -------------------------------------------------------------------------------- /tests/tasks/manage_collection_namespaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/tasks/manage_collection_namespaces.yml -------------------------------------------------------------------------------- /tests/tasks/manage_collection_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/tasks/manage_collection_publish.yml -------------------------------------------------------------------------------- /tests/tasks/manage_ee_images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/tasks/manage_ee_images.yml -------------------------------------------------------------------------------- /tests/tasks/manage_ee_namespaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/tasks/manage_ee_namespaces.yml -------------------------------------------------------------------------------- /tests/tasks/manage_ee_registries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/tasks/manage_ee_registries.yml -------------------------------------------------------------------------------- /tests/tasks/manage_ee_registry_indices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/tasks/manage_ee_registry_indices.yml -------------------------------------------------------------------------------- /tests/tasks/manage_ee_registry_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/tasks/manage_ee_registry_sync.yml -------------------------------------------------------------------------------- /tests/tasks/manage_ee_repositories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/tasks/manage_ee_repositories.yml -------------------------------------------------------------------------------- /tests/tasks/manage_ee_repository_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/tasks/manage_ee_repository_sync.yml -------------------------------------------------------------------------------- /tests/tasks/manage_groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/tasks/manage_groups.yml -------------------------------------------------------------------------------- /tests/tasks/manage_users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/tasks/manage_users.yml -------------------------------------------------------------------------------- /tests/vars/ah_ansible_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/vars/ah_ansible_config.yml -------------------------------------------------------------------------------- /tests/vars/ah_collection_namespaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/vars/ah_collection_namespaces.yml -------------------------------------------------------------------------------- /tests/vars/ah_collection_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/vars/ah_collection_publish.yml -------------------------------------------------------------------------------- /tests/vars/ah_ee_images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/vars/ah_ee_images.yml -------------------------------------------------------------------------------- /tests/vars/ah_ee_namespaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/vars/ah_ee_namespaces.yml -------------------------------------------------------------------------------- /tests/vars/ah_ee_registries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/vars/ah_ee_registries.yml -------------------------------------------------------------------------------- /tests/vars/ah_ee_registry_indices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/vars/ah_ee_registry_indices.yml -------------------------------------------------------------------------------- /tests/vars/ah_ee_registry_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/vars/ah_ee_registry_sync.yml -------------------------------------------------------------------------------- /tests/vars/ah_ee_repositories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/vars/ah_ee_repositories.yml -------------------------------------------------------------------------------- /tests/vars/ah_ee_repository_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/vars/ah_ee_repository_sync.yml -------------------------------------------------------------------------------- /tests/vars/ah_groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/vars/ah_groups.yml -------------------------------------------------------------------------------- /tests/vars/ah_users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/vars/ah_users.yml -------------------------------------------------------------------------------- /tests/vars/pah_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_collection/HEAD/tests/vars/pah_vars.yml --------------------------------------------------------------------------------