├── .cherry_picker.toml ├── .coveragerc ├── .dockerignore ├── .git_archival.txt ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation_report.yml │ └── feature_request.yml ├── issue_labeler.yml ├── patchback.yml ├── test-scripts │ └── setup_pulp.sh └── workflows │ ├── ci.yml │ └── triage.yml ├── .gitignore ├── .readthedocs.yaml ├── .yamllint ├── CODEOWNERS ├── CONTRIBUTING.md ├── Containerfile ├── LICENSE.md ├── README.md ├── SECURITY.md ├── bindep.txt ├── demo └── execution-environment.yml ├── docs ├── Makefile ├── _static │ └── .gitkeep ├── _templates │ └── .gitkeep ├── collection_metadata.rst ├── community.rst ├── conf.py ├── definition.rst ├── glossary.rst ├── index.rst ├── installation.rst ├── make.bat ├── porting_guides │ ├── porting_guide.rst │ ├── porting_guide_v3.0.rst │ ├── porting_guide_v3.1.rst │ └── porting_guide_v3.2.rst ├── requirements.in ├── requirements.txt ├── scenario_guides │ ├── copy_ee.yml │ ├── env_ee.yml │ ├── galaxy_ee.yml │ ├── scenario_copy.rst │ ├── scenario_custom.rst │ ├── scenario_pip_check.rst │ ├── scenario_secret_passing.rst │ └── scenario_using_env.rst └── usage.rst ├── pyproject.toml ├── pytest.ini ├── setup.cfg ├── src └── ansible_builder │ ├── __init__.py │ ├── __main__.py │ ├── _target_scripts │ ├── __init__.py │ ├── assemble │ ├── check_ansible │ ├── check_galaxy │ ├── entrypoint │ ├── install-from-bindep │ ├── introspect.py │ └── pip_install │ ├── cli.py │ ├── constants.py │ ├── containerfile.py │ ├── ee_schema.py │ ├── exceptions.py │ ├── main.py │ ├── policies.py │ ├── user_definition.py │ └── utils.py ├── test ├── __init__.py ├── conftest.py ├── data │ ├── README.md │ ├── alternate_collections │ │ └── ansible_collections │ │ │ └── test_collection │ │ │ └── test_yaml_extension │ │ │ ├── MANIFEST.json │ │ │ ├── meta │ │ │ └── execution-environment.yaml │ │ │ └── my-requirements.txt │ ├── ansible.posix.at │ │ ├── env │ │ │ └── settings │ │ ├── execution-environment.yml │ │ ├── project │ │ │ └── ansible.posix.at.yml │ │ ├── requirements.yml │ │ └── run.sh │ ├── ansible_cfg_for_galaxy │ │ ├── ansible-test.cfg │ │ └── requirements.yml │ ├── ansible_collections │ │ ├── other │ │ │ └── reqfile │ │ │ │ └── requirements.txt │ │ └── test │ │ │ ├── bindep │ │ │ ├── MANIFEST.json │ │ │ └── bindep.txt │ │ │ ├── metadata │ │ │ ├── MANIFEST.json │ │ │ ├── meta │ │ │ │ └── execution-environment.yml │ │ │ └── my-requirements.txt │ │ │ └── reqfile │ │ │ ├── MANIFEST.json │ │ │ ├── extra_req.txt │ │ │ └── requirements.txt │ ├── blank │ │ ├── env │ │ │ └── settings │ │ ├── execution-environment.yml │ │ ├── project │ │ │ └── blank.yml │ │ └── run.sh │ ├── build_args │ │ ├── base-image.yml │ │ └── execution-environment.yml │ ├── build_fail │ │ ├── execution-environment.yml │ │ └── user-ee.yml │ ├── definition_files │ │ ├── bad.yml │ │ ├── invalid.yml │ │ ├── no_galaxy.yml │ │ └── no_python.yml │ ├── minimal_fast │ │ └── execution-environment.yml │ ├── nested_galaxy_file │ │ ├── foo │ │ │ └── requirements.yml │ │ └── nested-galaxy.yml │ ├── pip │ │ ├── env │ │ │ └── settings │ │ ├── execution-environment.yml │ │ ├── project │ │ │ ├── pip.yml │ │ │ └── requirements.txt │ │ └── run.sh │ ├── pytz │ │ ├── env │ │ │ ├── extravars │ │ │ └── settings │ │ ├── execution-environment.yml │ │ ├── project │ │ │ └── pytz.yml │ │ └── requirements.yml │ ├── run.sh │ ├── subversion │ │ ├── bindep.txt │ │ ├── env │ │ │ └── settings │ │ ├── execution-environment.yml │ │ ├── project │ │ │ └── subversion.yml │ │ └── run.sh │ ├── v2 │ │ ├── RPM-GPG-KEY-redhat-release │ │ ├── invalid-keyring │ │ └── sig_req │ │ │ ├── ee-good.yml │ │ │ └── ee-no-orig.yml │ └── v3 │ │ ├── check_ansible │ │ ├── ee-missing-ansible.yml │ │ ├── ee-missing-runner.yml │ │ └── ee-skip.yml │ │ ├── check_galaxy │ │ ├── ee-bad-ansible-cfg.yml │ │ └── files │ │ │ └── bad_ansible.cfg │ │ ├── complete │ │ ├── ee.yml │ │ └── files │ │ │ ├── data │ │ │ ├── a.dat │ │ │ └── text_files │ │ │ │ └── a.txt │ │ │ └── random.cfg │ │ ├── empty_galaxy_reqs │ │ └── execution-environment.yml │ │ ├── extra_build_cli_args │ │ └── execution-environment.yml │ │ ├── pre_and_post │ │ ├── ee.yml │ │ └── requirements.yml │ │ └── sig_req │ │ ├── ee-good.yml │ │ └── ee-no-orig.yml ├── integration │ ├── __init__.py │ ├── conftest.py │ ├── test_build.py │ ├── test_create.py │ ├── test_help.py │ └── test_introspect_cli.py ├── pulp_integration │ ├── __init__.py │ └── test_policies.py ├── requirements.txt └── unit │ ├── __init__.py │ ├── test_cli.py │ ├── test_containerfile.py │ ├── test_introspect.py │ ├── test_main.py │ ├── test_policies.py │ ├── test_user_definition.py │ └── test_utils.py └── tox.ini /.cherry_picker.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/.cherry_picker.toml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .tox 2 | docs 3 | test 4 | -------------------------------------------------------------------------------- /.git_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/.git_archival.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .git_archival.txt export-subst 2 | 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/.github/ISSUE_TEMPLATE/documentation_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/issue_labeler.yml: -------------------------------------------------------------------------------- 1 | needs_triage: 2 | - '/.*/' 3 | -------------------------------------------------------------------------------- /.github/patchback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/.github/patchback.yml -------------------------------------------------------------------------------- /.github/test-scripts/setup_pulp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/.github/test-scripts/setup_pulp.sh -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/triage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/.github/workflows/triage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/.yamllint -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/Containerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bindep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/bindep.txt -------------------------------------------------------------------------------- /demo/execution-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/demo/execution-environment.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/collection_metadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/collection_metadata.rst -------------------------------------------------------------------------------- /docs/community.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/community.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/definition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/definition.rst -------------------------------------------------------------------------------- /docs/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/glossary.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/porting_guides/porting_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/porting_guides/porting_guide.rst -------------------------------------------------------------------------------- /docs/porting_guides/porting_guide_v3.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/porting_guides/porting_guide_v3.0.rst -------------------------------------------------------------------------------- /docs/porting_guides/porting_guide_v3.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/porting_guides/porting_guide_v3.1.rst -------------------------------------------------------------------------------- /docs/porting_guides/porting_guide_v3.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/porting_guides/porting_guide_v3.2.rst -------------------------------------------------------------------------------- /docs/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/requirements.in -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/scenario_guides/copy_ee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/scenario_guides/copy_ee.yml -------------------------------------------------------------------------------- /docs/scenario_guides/env_ee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/scenario_guides/env_ee.yml -------------------------------------------------------------------------------- /docs/scenario_guides/galaxy_ee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/scenario_guides/galaxy_ee.yml -------------------------------------------------------------------------------- /docs/scenario_guides/scenario_copy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/scenario_guides/scenario_copy.rst -------------------------------------------------------------------------------- /docs/scenario_guides/scenario_custom.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/scenario_guides/scenario_custom.rst -------------------------------------------------------------------------------- /docs/scenario_guides/scenario_pip_check.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/scenario_guides/scenario_pip_check.rst -------------------------------------------------------------------------------- /docs/scenario_guides/scenario_secret_passing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/scenario_guides/scenario_secret_passing.rst -------------------------------------------------------------------------------- /docs/scenario_guides/scenario_using_env.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/scenario_guides/scenario_using_env.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/ansible_builder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ansible_builder/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/src/ansible_builder/__main__.py -------------------------------------------------------------------------------- /src/ansible_builder/_target_scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ansible_builder/_target_scripts/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/src/ansible_builder/_target_scripts/assemble -------------------------------------------------------------------------------- /src/ansible_builder/_target_scripts/check_ansible: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/src/ansible_builder/_target_scripts/check_ansible -------------------------------------------------------------------------------- /src/ansible_builder/_target_scripts/check_galaxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/src/ansible_builder/_target_scripts/check_galaxy -------------------------------------------------------------------------------- /src/ansible_builder/_target_scripts/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/src/ansible_builder/_target_scripts/entrypoint -------------------------------------------------------------------------------- /src/ansible_builder/_target_scripts/install-from-bindep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/src/ansible_builder/_target_scripts/install-from-bindep -------------------------------------------------------------------------------- /src/ansible_builder/_target_scripts/introspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/src/ansible_builder/_target_scripts/introspect.py -------------------------------------------------------------------------------- /src/ansible_builder/_target_scripts/pip_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/src/ansible_builder/_target_scripts/pip_install -------------------------------------------------------------------------------- /src/ansible_builder/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/src/ansible_builder/cli.py -------------------------------------------------------------------------------- /src/ansible_builder/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/src/ansible_builder/constants.py -------------------------------------------------------------------------------- /src/ansible_builder/containerfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/src/ansible_builder/containerfile.py -------------------------------------------------------------------------------- /src/ansible_builder/ee_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/src/ansible_builder/ee_schema.py -------------------------------------------------------------------------------- /src/ansible_builder/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/src/ansible_builder/exceptions.py -------------------------------------------------------------------------------- /src/ansible_builder/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/src/ansible_builder/main.py -------------------------------------------------------------------------------- /src/ansible_builder/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/src/ansible_builder/policies.py -------------------------------------------------------------------------------- /src/ansible_builder/user_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/src/ansible_builder/user_definition.py -------------------------------------------------------------------------------- /src/ansible_builder/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/src/ansible_builder/utils.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/README.md -------------------------------------------------------------------------------- /test/data/alternate_collections/ansible_collections/test_collection/test_yaml_extension/MANIFEST.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/data/alternate_collections/ansible_collections/test_collection/test_yaml_extension/meta/execution-environment.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | dependencies: 3 | python: my-requirements.txt 4 | -------------------------------------------------------------------------------- /test/data/alternate_collections/ansible_collections/test_collection/test_yaml_extension/my-requirements.txt: -------------------------------------------------------------------------------- 1 | python-six 2 | -------------------------------------------------------------------------------- /test/data/ansible.posix.at/env/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/ansible.posix.at/env/settings -------------------------------------------------------------------------------- /test/data/ansible.posix.at/execution-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/ansible.posix.at/execution-environment.yml -------------------------------------------------------------------------------- /test/data/ansible.posix.at/project/ansible.posix.at.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/ansible.posix.at/project/ansible.posix.at.yml -------------------------------------------------------------------------------- /test/data/ansible.posix.at/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/ansible.posix.at/requirements.yml -------------------------------------------------------------------------------- /test/data/ansible.posix.at/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/ansible.posix.at/run.sh -------------------------------------------------------------------------------- /test/data/ansible_cfg_for_galaxy/ansible-test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/ansible_cfg_for_galaxy/ansible-test.cfg -------------------------------------------------------------------------------- /test/data/ansible_cfg_for_galaxy/requirements.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/data/ansible_collections/other/reqfile/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/ansible_collections/other/reqfile/requirements.txt -------------------------------------------------------------------------------- /test/data/ansible_collections/test/bindep/MANIFEST.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/data/ansible_collections/test/bindep/bindep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/ansible_collections/test/bindep/bindep.txt -------------------------------------------------------------------------------- /test/data/ansible_collections/test/metadata/MANIFEST.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/data/ansible_collections/test/metadata/meta/execution-environment.yml: -------------------------------------------------------------------------------- 1 | --- 2 | version: 1 3 | dependencies: 4 | python: my-requirements.txt 5 | -------------------------------------------------------------------------------- /test/data/ansible_collections/test/metadata/my-requirements.txt: -------------------------------------------------------------------------------- 1 | pyvcloud>=14 2 | -------------------------------------------------------------------------------- /test/data/ansible_collections/test/reqfile/MANIFEST.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/data/ansible_collections/test/reqfile/extra_req.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/ansible_collections/test/reqfile/extra_req.txt -------------------------------------------------------------------------------- /test/data/ansible_collections/test/reqfile/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/ansible_collections/test/reqfile/requirements.txt -------------------------------------------------------------------------------- /test/data/blank/env/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/blank/env/settings -------------------------------------------------------------------------------- /test/data/blank/execution-environment.yml: -------------------------------------------------------------------------------- 1 | --- 2 | version: 1 3 | -------------------------------------------------------------------------------- /test/data/blank/project/blank.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/blank/project/blank.yml -------------------------------------------------------------------------------- /test/data/blank/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/blank/run.sh -------------------------------------------------------------------------------- /test/data/build_args/base-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/build_args/base-image.yml -------------------------------------------------------------------------------- /test/data/build_args/execution-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/build_args/execution-environment.yml -------------------------------------------------------------------------------- /test/data/build_fail/execution-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/build_fail/execution-environment.yml -------------------------------------------------------------------------------- /test/data/build_fail/user-ee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/build_fail/user-ee.yml -------------------------------------------------------------------------------- /test/data/definition_files/bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/definition_files/bad.yml -------------------------------------------------------------------------------- /test/data/definition_files/invalid.yml: -------------------------------------------------------------------------------- 1 | {"foo": 'bar -------------------------------------------------------------------------------- /test/data/definition_files/no_galaxy.yml: -------------------------------------------------------------------------------- 1 | --- 2 | version: 1 3 | dependencies: 4 | galaxy: doesnotexist.yml 5 | -------------------------------------------------------------------------------- /test/data/definition_files/no_python.yml: -------------------------------------------------------------------------------- 1 | --- 2 | version: 1 3 | dependencies: 4 | python: doesnotexist.txt 5 | -------------------------------------------------------------------------------- /test/data/minimal_fast/execution-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/minimal_fast/execution-environment.yml -------------------------------------------------------------------------------- /test/data/nested_galaxy_file/foo/requirements.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: [] 3 | -------------------------------------------------------------------------------- /test/data/nested_galaxy_file/nested-galaxy.yml: -------------------------------------------------------------------------------- 1 | --- 2 | version: 1 3 | dependencies: 4 | galaxy: foo/requirements.yml 5 | -------------------------------------------------------------------------------- /test/data/pip/env/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/pip/env/settings -------------------------------------------------------------------------------- /test/data/pip/execution-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/pip/execution-environment.yml -------------------------------------------------------------------------------- /test/data/pip/project/pip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/pip/project/pip.yml -------------------------------------------------------------------------------- /test/data/pip/project/requirements.txt: -------------------------------------------------------------------------------- 1 | awxkit>=13.0.0 2 | voluptuous 3 | -------------------------------------------------------------------------------- /test/data/pip/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/pip/run.sh -------------------------------------------------------------------------------- /test/data/pytz/env/extravars: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | -------------------------------------------------------------------------------- /test/data/pytz/env/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/pytz/env/settings -------------------------------------------------------------------------------- /test/data/pytz/execution-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/pytz/execution-environment.yml -------------------------------------------------------------------------------- /test/data/pytz/project/pytz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/pytz/project/pytz.yml -------------------------------------------------------------------------------- /test/data/pytz/requirements.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - name: awx.awx 4 | -------------------------------------------------------------------------------- /test/data/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/run.sh -------------------------------------------------------------------------------- /test/data/subversion/bindep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/subversion/bindep.txt -------------------------------------------------------------------------------- /test/data/subversion/env/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/subversion/env/settings -------------------------------------------------------------------------------- /test/data/subversion/execution-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/subversion/execution-environment.yml -------------------------------------------------------------------------------- /test/data/subversion/project/subversion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/subversion/project/subversion.yml -------------------------------------------------------------------------------- /test/data/subversion/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/subversion/run.sh -------------------------------------------------------------------------------- /test/data/v2/RPM-GPG-KEY-redhat-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/v2/RPM-GPG-KEY-redhat-release -------------------------------------------------------------------------------- /test/data/v2/invalid-keyring: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/data/v2/sig_req/ee-good.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/v2/sig_req/ee-good.yml -------------------------------------------------------------------------------- /test/data/v2/sig_req/ee-no-orig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/v2/sig_req/ee-no-orig.yml -------------------------------------------------------------------------------- /test/data/v3/check_ansible/ee-missing-ansible.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/v3/check_ansible/ee-missing-ansible.yml -------------------------------------------------------------------------------- /test/data/v3/check_ansible/ee-missing-runner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/v3/check_ansible/ee-missing-runner.yml -------------------------------------------------------------------------------- /test/data/v3/check_ansible/ee-skip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/v3/check_ansible/ee-skip.yml -------------------------------------------------------------------------------- /test/data/v3/check_galaxy/ee-bad-ansible-cfg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/v3/check_galaxy/ee-bad-ansible-cfg.yml -------------------------------------------------------------------------------- /test/data/v3/check_galaxy/files/bad_ansible.cfg: -------------------------------------------------------------------------------- 1 | # Bad ansible.cfg 2 | [defaults] 3 | ==?k,sm../a 4 | -------------------------------------------------------------------------------- /test/data/v3/complete/ee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/v3/complete/ee.yml -------------------------------------------------------------------------------- /test/data/v3/complete/files/data/a.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/data/v3/complete/files/data/text_files/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/data/v3/complete/files/random.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/data/v3/empty_galaxy_reqs/execution-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/v3/empty_galaxy_reqs/execution-environment.yml -------------------------------------------------------------------------------- /test/data/v3/extra_build_cli_args/execution-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/v3/extra_build_cli_args/execution-environment.yml -------------------------------------------------------------------------------- /test/data/v3/pre_and_post/ee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/v3/pre_and_post/ee.yml -------------------------------------------------------------------------------- /test/data/v3/pre_and_post/requirements.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/data/v3/sig_req/ee-good.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/v3/sig_req/ee-good.yml -------------------------------------------------------------------------------- /test/data/v3/sig_req/ee-no-orig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/data/v3/sig_req/ee-no-orig.yml -------------------------------------------------------------------------------- /test/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/integration/test_build.py -------------------------------------------------------------------------------- /test/integration/test_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/integration/test_create.py -------------------------------------------------------------------------------- /test/integration/test_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/integration/test_help.py -------------------------------------------------------------------------------- /test/integration/test_introspect_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/integration/test_introspect_cli.py -------------------------------------------------------------------------------- /test/pulp_integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/pulp_integration/test_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/pulp_integration/test_policies.py -------------------------------------------------------------------------------- /test/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/requirements.txt -------------------------------------------------------------------------------- /test/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/unit/test_cli.py -------------------------------------------------------------------------------- /test/unit/test_containerfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/unit/test_containerfile.py -------------------------------------------------------------------------------- /test/unit/test_introspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/unit/test_introspect.py -------------------------------------------------------------------------------- /test/unit/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/unit/test_main.py -------------------------------------------------------------------------------- /test/unit/test_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/unit/test_policies.py -------------------------------------------------------------------------------- /test/unit/test_user_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/unit/test_user_definition.py -------------------------------------------------------------------------------- /test/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/test/unit/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-builder/HEAD/tox.ini --------------------------------------------------------------------------------