├── .gitignore ├── .gitreview ├── CONTRIBUTING.rst ├── LICENSE ├── README.rst ├── bindep.txt ├── defaults └── main.yml ├── doc ├── Makefile ├── requirements.txt └── source │ ├── _static │ └── .gitkeep │ ├── conf.py │ ├── configure-glance.rst │ └── index.rst ├── examples └── playbook.yml ├── handlers └── main.yml ├── meta ├── main.yml └── openstack-ansible.yml ├── releasenotes ├── notes │ ├── .placeholder │ ├── add-cors-config-6326223fe7fa7423.yaml │ ├── capping_glance_workers-54afc20c20baa14e.yaml │ ├── glance-1604-support-e65870170a925bfe.yaml │ ├── glance-init-config-overrides-d1c8c3dcc50c109a.yaml │ ├── glance-packages-rename-abd348b0725e4b7b.yaml │ ├── glance-service-setup-host-b0e71be408de074b.yaml │ ├── glance-swift-store-auth-insecure-1b69e1e3e9ba0b30.yaml │ ├── glance-v2-api-only-0d4a61b0d4dade18.yaml │ ├── glance_available_stores_mapping-8e239dbedc625e73.yaml │ ├── glance_barbican_integration-f493d11d6343e3c0.yaml │ ├── glance_cors_allowed_origin-fe355eb93169cf13.yaml │ ├── glance_image_cache_stall_time-ca8d2750b079279a.yaml │ ├── glance_init_time_settings-d3cc064fd8acf107.yaml │ ├── glance_property_protection-458102a81be747f5.yaml │ ├── glance_registry-0a1a1f8c60f5a368.yaml │ ├── glance_remote_client-78e5d426cb55717f.yaml │ ├── glance_use_uwsgi_ceph-7ddcaa2f5be8128c.yaml │ ├── glance_uwsgi-dd5fe62e6f85ecd2.yaml │ ├── openstack-distribution-packages-2f041fb59bfbb7ef.yaml │ ├── os-glance-only-install-venv-0271d3238c0d561c.yaml │ ├── os_glance-centos7-support-21cb81e361831c9f.yaml │ ├── oslo-messaging-separate-backends-61d279ded1bc999e.yaml │ ├── package-list-name-changes-38f1554097b6bbe9.yaml │ ├── package-state-646b25638f523411.yaml │ ├── remove-requirements-git-af92138c4d8f9a81.yaml │ ├── remove-v1-api-4c66f43c4f8404b6.yaml │ ├── remove_rpc_backend-a37345891a987f21.yaml │ ├── removed-db-create-tasks-4560d4b960383c4e.yaml │ └── systemd-nfs-setup-5c35c23eda4443be.yaml └── source │ ├── _static │ └── .placeholder │ ├── _templates │ └── .placeholder │ ├── conf.py │ ├── index.rst │ ├── mitaka.rst │ ├── newton.rst │ ├── ocata.rst │ ├── pike.rst │ ├── queens.rst │ ├── rocky.rst │ ├── stein.rst │ ├── train.rst │ ├── unreleased.rst │ ├── ussuri.rst │ └── zed.rst ├── tasks ├── glance_db_sync.yml ├── glance_install.yml ├── glance_post_install.yml └── main.yml ├── templates ├── glance-api.conf.j2 ├── glance-cache.conf.j2 ├── glance-manage.conf.j2 ├── glance-scrubber.conf.j2 ├── glance-swift-store.conf.j2 ├── schema-image.json.j2 └── sudoers.j2 ├── tests ├── ansible-role-requirements.yml ├── group_vars │ └── all_containers.yml ├── host_vars │ ├── infra1.yml │ ├── localhost.yml │ └── openstack1.yml ├── inventory ├── os_glance-overrides.yml ├── overrides-nfs.yml ├── test-create-nfs-dev.yml └── test.yml ├── tox.ini ├── vars ├── debian.yml ├── distro_install.yml ├── main.yml ├── redhat.yml └── source_install.yml └── zuul.d ├── jobs.yaml └── project.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/.gitreview -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/README.rst -------------------------------------------------------------------------------- /bindep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/bindep.txt -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/source/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/configure-glance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/doc/source/configure-glance.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /examples/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/examples/playbook.yml -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/handlers/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/meta/main.yml -------------------------------------------------------------------------------- /meta/openstack-ansible.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/meta/openstack-ansible.yml -------------------------------------------------------------------------------- /releasenotes/notes/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/notes/add-cors-config-6326223fe7fa7423.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/add-cors-config-6326223fe7fa7423.yaml -------------------------------------------------------------------------------- /releasenotes/notes/capping_glance_workers-54afc20c20baa14e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/capping_glance_workers-54afc20c20baa14e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance-1604-support-e65870170a925bfe.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - The ``os_glance`` role now supports Ubuntu 16.04 and SystemD. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/glance-init-config-overrides-d1c8c3dcc50c109a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/glance-init-config-overrides-d1c8c3dcc50c109a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance-packages-rename-abd348b0725e4b7b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/glance-packages-rename-abd348b0725e4b7b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance-service-setup-host-b0e71be408de074b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/glance-service-setup-host-b0e71be408de074b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance-swift-store-auth-insecure-1b69e1e3e9ba0b30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/glance-swift-store-auth-insecure-1b69e1e3e9ba0b30.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance-v2-api-only-0d4a61b0d4dade18.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/glance-v2-api-only-0d4a61b0d4dade18.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance_available_stores_mapping-8e239dbedc625e73.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/glance_available_stores_mapping-8e239dbedc625e73.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance_barbican_integration-f493d11d6343e3c0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/glance_barbican_integration-f493d11d6343e3c0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance_cors_allowed_origin-fe355eb93169cf13.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/glance_cors_allowed_origin-fe355eb93169cf13.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance_image_cache_stall_time-ca8d2750b079279a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/glance_image_cache_stall_time-ca8d2750b079279a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance_init_time_settings-d3cc064fd8acf107.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/glance_init_time_settings-d3cc064fd8acf107.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance_property_protection-458102a81be747f5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/glance_property_protection-458102a81be747f5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance_registry-0a1a1f8c60f5a368.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/glance_registry-0a1a1f8c60f5a368.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance_remote_client-78e5d426cb55717f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/glance_remote_client-78e5d426cb55717f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance_use_uwsgi_ceph-7ddcaa2f5be8128c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/glance_use_uwsgi_ceph-7ddcaa2f5be8128c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/glance_uwsgi-dd5fe62e6f85ecd2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/glance_uwsgi-dd5fe62e6f85ecd2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/openstack-distribution-packages-2f041fb59bfbb7ef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/openstack-distribution-packages-2f041fb59bfbb7ef.yaml -------------------------------------------------------------------------------- /releasenotes/notes/os-glance-only-install-venv-0271d3238c0d561c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/os-glance-only-install-venv-0271d3238c0d561c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/os_glance-centos7-support-21cb81e361831c9f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/os_glance-centos7-support-21cb81e361831c9f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/oslo-messaging-separate-backends-61d279ded1bc999e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/oslo-messaging-separate-backends-61d279ded1bc999e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/package-list-name-changes-38f1554097b6bbe9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/package-list-name-changes-38f1554097b6bbe9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/package-state-646b25638f523411.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/package-state-646b25638f523411.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-requirements-git-af92138c4d8f9a81.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/remove-requirements-git-af92138c4d8f9a81.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-v1-api-4c66f43c4f8404b6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/remove-v1-api-4c66f43c4f8404b6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_rpc_backend-a37345891a987f21.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/remove_rpc_backend-a37345891a987f21.yaml -------------------------------------------------------------------------------- /releasenotes/notes/removed-db-create-tasks-4560d4b960383c4e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/removed-db-create-tasks-4560d4b960383c4e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/systemd-nfs-setup-5c35c23eda4443be.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/notes/systemd-nfs-setup-5c35c23eda4443be.yaml -------------------------------------------------------------------------------- /releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/source/_templates/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/source/conf.py -------------------------------------------------------------------------------- /releasenotes/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/source/index.rst -------------------------------------------------------------------------------- /releasenotes/source/mitaka.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/source/mitaka.rst -------------------------------------------------------------------------------- /releasenotes/source/newton.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/source/newton.rst -------------------------------------------------------------------------------- /releasenotes/source/ocata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/source/ocata.rst -------------------------------------------------------------------------------- /releasenotes/source/pike.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/source/pike.rst -------------------------------------------------------------------------------- /releasenotes/source/queens.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/source/queens.rst -------------------------------------------------------------------------------- /releasenotes/source/rocky.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/source/rocky.rst -------------------------------------------------------------------------------- /releasenotes/source/stein.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/source/stein.rst -------------------------------------------------------------------------------- /releasenotes/source/train.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/source/train.rst -------------------------------------------------------------------------------- /releasenotes/source/unreleased.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/source/unreleased.rst -------------------------------------------------------------------------------- /releasenotes/source/ussuri.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/source/ussuri.rst -------------------------------------------------------------------------------- /releasenotes/source/zed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/releasenotes/source/zed.rst -------------------------------------------------------------------------------- /tasks/glance_db_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/tasks/glance_db_sync.yml -------------------------------------------------------------------------------- /tasks/glance_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/tasks/glance_install.yml -------------------------------------------------------------------------------- /tasks/glance_post_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/tasks/glance_post_install.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /templates/glance-api.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/templates/glance-api.conf.j2 -------------------------------------------------------------------------------- /templates/glance-cache.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/templates/glance-cache.conf.j2 -------------------------------------------------------------------------------- /templates/glance-manage.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/templates/glance-manage.conf.j2 -------------------------------------------------------------------------------- /templates/glance-scrubber.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/templates/glance-scrubber.conf.j2 -------------------------------------------------------------------------------- /templates/glance-swift-store.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/templates/glance-swift-store.conf.j2 -------------------------------------------------------------------------------- /templates/schema-image.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/templates/schema-image.json.j2 -------------------------------------------------------------------------------- /templates/sudoers.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/templates/sudoers.j2 -------------------------------------------------------------------------------- /tests/ansible-role-requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/tests/ansible-role-requirements.yml -------------------------------------------------------------------------------- /tests/group_vars/all_containers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/tests/group_vars/all_containers.yml -------------------------------------------------------------------------------- /tests/host_vars/infra1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/tests/host_vars/infra1.yml -------------------------------------------------------------------------------- /tests/host_vars/localhost.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/tests/host_vars/localhost.yml -------------------------------------------------------------------------------- /tests/host_vars/openstack1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/tests/host_vars/openstack1.yml -------------------------------------------------------------------------------- /tests/inventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/tests/inventory -------------------------------------------------------------------------------- /tests/os_glance-overrides.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/tests/os_glance-overrides.yml -------------------------------------------------------------------------------- /tests/overrides-nfs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/tests/overrides-nfs.yml -------------------------------------------------------------------------------- /tests/test-create-nfs-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/tests/test-create-nfs-dev.yml -------------------------------------------------------------------------------- /tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/tests/test.yml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/tox.ini -------------------------------------------------------------------------------- /vars/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/vars/debian.yml -------------------------------------------------------------------------------- /vars/distro_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/vars/distro_install.yml -------------------------------------------------------------------------------- /vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/vars/main.yml -------------------------------------------------------------------------------- /vars/redhat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/vars/redhat.yml -------------------------------------------------------------------------------- /vars/source_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/vars/source_install.yml -------------------------------------------------------------------------------- /zuul.d/jobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/zuul.d/jobs.yaml -------------------------------------------------------------------------------- /zuul.d/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_glance/HEAD/zuul.d/project.yaml --------------------------------------------------------------------------------