├── .gitignore ├── .gitreview ├── CONTRIBUTING.rst ├── LICENSE ├── README.rst ├── bindep.txt ├── defaults └── main.yml ├── doc ├── Makefile ├── requirements.txt └── source │ ├── _static │ └── .gitkeep │ ├── conf.py │ ├── configure-swift-add.rst │ ├── configure-swift-config.rst │ ├── configure-swift-devices.rst │ ├── configure-swift-glance.rst │ ├── configure-swift-policies.rst │ ├── configure-swift.rst │ └── index.rst ├── examples └── playbook.yml ├── handlers └── main.yml ├── meta ├── main.yml └── openstack-ansible.yml ├── releasenotes ├── notes │ ├── .placeholder │ ├── add-swift3-support-a3f1a5d866fd8883.yaml │ ├── add-xenial-support-e285a643a39f0438.yaml │ ├── capping_swift_services_workers-5ac9ecb28f56469f.yaml │ ├── deprecate_auth_plugin-397a32171826ef78.yaml │ ├── openstack-distribution-packages-b1c9e1f488e53872.yaml │ ├── os_swift-centos7-support-23846d7eafbfa957.yaml │ ├── os_swift-only-install-venv-fdd5d41759433cf8.yaml │ ├── oslo-messaging-separate-backends-e82ea3162d2d383f.yaml │ ├── package-list-name-changes-e6f88d12f3bd9fa0.yaml │ ├── package-state-f2309b07440d0ae8.yaml │ ├── remove-requirements-git-0c8e83081b435229.yaml │ ├── rsync_reverse_lookup-609fb68be712a5e4.yaml │ ├── swift-conf-b8dd5e1199f8e4a8.yaml │ ├── swift-fallocate-reserve-ff513025da68bfed.yaml │ ├── swift-force-hash-change-45b09eeb8b0368a6.yaml │ ├── swift-fs-file-limits-a57ab8b4c3c944e4.yaml │ ├── swift-init-config-overrides-822ec734e02a0dd1.yaml │ ├── swift-pretend-mph-passed-7e5c15eeb35861c3.yaml │ ├── swift-pypy-gc-options-663fecdf1e013a23.yaml │ ├── swift-pypy-support-9706519c4b88a571.yaml │ ├── swift-reconfigure-xfs-from-mlocate-e4844e6c0469afd6.yaml │ ├── swift-rings-port-change-4a95bbd9b63fb201.yaml │ ├── swift-rsync-module-per-drive-79b05af8276e7d6e.yaml │ ├── swift-service-setup-host-b3d0aca53522a887.yaml │ ├── swift-staticweb-support-b280fbebf271820b.yaml │ ├── swift-syslog-log-perms-5a116171a1adeae3.yaml │ ├── swift-tempauth-configuration-7f710a5e2a1af67f.yaml │ ├── swift-versioned-writes-middleware-0b529e3cf2fb493d.yaml │ ├── swift_gnocchi-29eed9b49794f980.yaml │ ├── swift_init_time_settings-20ea7817cbd2dca9.yaml │ └── swift_internal_client-7c497400d7a8b4a2.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 ├── main.yml ├── swift_calculate_addresses.yml ├── swift_check_hashes.yml ├── swift_install.yml ├── swift_key_setup.yml ├── swift_post_install.yml ├── swift_pre_install.yml ├── swift_proxy_hosts.yml ├── swift_pypy_setup.yml ├── swift_rings.yml ├── swift_rings_build.yml ├── swift_rings_distribute.yml ├── swift_rings_post_distribution_check.yml ├── swift_storage_hosts.yml ├── swift_storage_hosts_account.yml ├── swift_storage_hosts_container.yml ├── swift_storage_hosts_object.yml └── swift_storage_hosts_setup.yml ├── templates ├── account-server-replicator.conf.j2 ├── account-server.conf.j2 ├── container-reconciler.conf.j2 ├── container-server-replicator.conf.j2 ├── container-server.conf.j2 ├── container-sync-realms.conf.j2 ├── drive-audit.conf.j2 ├── internal-client.conf.j2 ├── object-expirer.conf.j2 ├── object-server-replicator.conf.j2 ├── object-server.conf.j2 ├── proxy-server.conf.j2 ├── ring.contents.j2 ├── rsyncd.conf.j2 ├── swift-dispersion.conf.j2 ├── swift-memcache.conf.j2 ├── swift.conf.j2 ├── swift_rings.py.j2 └── swift_rings_check.py.j2 ├── tests ├── ansible-role-requirements.yml ├── group_vars │ └── all_containers.yml ├── host_vars │ ├── infra1.yml │ ├── localhost.yml │ ├── swift-proxy.yml │ ├── swift-storage1.yml │ ├── swift-storage2.yml │ └── swift-storage3.yml ├── inventory ├── os_swift-overrides.yml ├── s3cfg.j2 ├── swift_test.conf.j2 ├── test-swift-functional.yml └── test.yml ├── tox.ini ├── vars ├── debian.yml ├── distro_install.yml ├── main.yml ├── redhat.yml └── source_install.yml └── zuul.d └── project.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/.gitreview -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/README.rst -------------------------------------------------------------------------------- /bindep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/bindep.txt -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/source/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/configure-swift-add.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/doc/source/configure-swift-add.rst -------------------------------------------------------------------------------- /doc/source/configure-swift-config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/doc/source/configure-swift-config.rst -------------------------------------------------------------------------------- /doc/source/configure-swift-devices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/doc/source/configure-swift-devices.rst -------------------------------------------------------------------------------- /doc/source/configure-swift-glance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/doc/source/configure-swift-glance.rst -------------------------------------------------------------------------------- /doc/source/configure-swift-policies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/doc/source/configure-swift-policies.rst -------------------------------------------------------------------------------- /doc/source/configure-swift.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/doc/source/configure-swift.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /examples/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/examples/playbook.yml -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/handlers/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/meta/main.yml -------------------------------------------------------------------------------- /meta/openstack-ansible.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/meta/openstack-ansible.yml -------------------------------------------------------------------------------- /releasenotes/notes/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/notes/add-swift3-support-a3f1a5d866fd8883.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/add-swift3-support-a3f1a5d866fd8883.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-xenial-support-e285a643a39f0438.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/add-xenial-support-e285a643a39f0438.yaml -------------------------------------------------------------------------------- /releasenotes/notes/capping_swift_services_workers-5ac9ecb28f56469f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/capping_swift_services_workers-5ac9ecb28f56469f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate_auth_plugin-397a32171826ef78.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/deprecate_auth_plugin-397a32171826ef78.yaml -------------------------------------------------------------------------------- /releasenotes/notes/openstack-distribution-packages-b1c9e1f488e53872.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/openstack-distribution-packages-b1c9e1f488e53872.yaml -------------------------------------------------------------------------------- /releasenotes/notes/os_swift-centos7-support-23846d7eafbfa957.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - CentOS7/RHEL support has been added to the os_swift role. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/os_swift-only-install-venv-fdd5d41759433cf8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/os_swift-only-install-venv-fdd5d41759433cf8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/oslo-messaging-separate-backends-e82ea3162d2d383f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/oslo-messaging-separate-backends-e82ea3162d2d383f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/package-list-name-changes-e6f88d12f3bd9fa0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/package-list-name-changes-e6f88d12f3bd9fa0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/package-state-f2309b07440d0ae8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/package-state-f2309b07440d0ae8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-requirements-git-0c8e83081b435229.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/remove-requirements-git-0c8e83081b435229.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rsync_reverse_lookup-609fb68be712a5e4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/rsync_reverse_lookup-609fb68be712a5e4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift-conf-b8dd5e1199f8e4a8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift-conf-b8dd5e1199f8e4a8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift-fallocate-reserve-ff513025da68bfed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift-fallocate-reserve-ff513025da68bfed.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift-force-hash-change-45b09eeb8b0368a6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift-force-hash-change-45b09eeb8b0368a6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift-fs-file-limits-a57ab8b4c3c944e4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift-fs-file-limits-a57ab8b4c3c944e4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift-init-config-overrides-822ec734e02a0dd1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift-init-config-overrides-822ec734e02a0dd1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift-pretend-mph-passed-7e5c15eeb35861c3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift-pretend-mph-passed-7e5c15eeb35861c3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift-pypy-gc-options-663fecdf1e013a23.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift-pypy-gc-options-663fecdf1e013a23.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift-pypy-support-9706519c4b88a571.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift-pypy-support-9706519c4b88a571.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift-reconfigure-xfs-from-mlocate-e4844e6c0469afd6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift-reconfigure-xfs-from-mlocate-e4844e6c0469afd6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift-rings-port-change-4a95bbd9b63fb201.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift-rings-port-change-4a95bbd9b63fb201.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift-rsync-module-per-drive-79b05af8276e7d6e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift-rsync-module-per-drive-79b05af8276e7d6e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift-service-setup-host-b3d0aca53522a887.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift-service-setup-host-b3d0aca53522a887.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift-staticweb-support-b280fbebf271820b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift-staticweb-support-b280fbebf271820b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift-syslog-log-perms-5a116171a1adeae3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift-syslog-log-perms-5a116171a1adeae3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift-tempauth-configuration-7f710a5e2a1af67f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift-tempauth-configuration-7f710a5e2a1af67f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift-versioned-writes-middleware-0b529e3cf2fb493d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift-versioned-writes-middleware-0b529e3cf2fb493d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift_gnocchi-29eed9b49794f980.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift_gnocchi-29eed9b49794f980.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift_init_time_settings-20ea7817cbd2dca9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift_init_time_settings-20ea7817cbd2dca9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/swift_internal_client-7c497400d7a8b4a2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/notes/swift_internal_client-7c497400d7a8b4a2.yaml -------------------------------------------------------------------------------- /releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/source/_templates/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/source/conf.py -------------------------------------------------------------------------------- /releasenotes/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/source/index.rst -------------------------------------------------------------------------------- /releasenotes/source/mitaka.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/source/mitaka.rst -------------------------------------------------------------------------------- /releasenotes/source/newton.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/source/newton.rst -------------------------------------------------------------------------------- /releasenotes/source/ocata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/source/ocata.rst -------------------------------------------------------------------------------- /releasenotes/source/pike.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/source/pike.rst -------------------------------------------------------------------------------- /releasenotes/source/queens.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/source/queens.rst -------------------------------------------------------------------------------- /releasenotes/source/rocky.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/source/rocky.rst -------------------------------------------------------------------------------- /releasenotes/source/stein.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/source/stein.rst -------------------------------------------------------------------------------- /releasenotes/source/train.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/source/train.rst -------------------------------------------------------------------------------- /releasenotes/source/unreleased.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/source/unreleased.rst -------------------------------------------------------------------------------- /releasenotes/source/ussuri.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/source/ussuri.rst -------------------------------------------------------------------------------- /releasenotes/source/zed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/releasenotes/source/zed.rst -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tasks/swift_calculate_addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/swift_calculate_addresses.yml -------------------------------------------------------------------------------- /tasks/swift_check_hashes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/swift_check_hashes.yml -------------------------------------------------------------------------------- /tasks/swift_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/swift_install.yml -------------------------------------------------------------------------------- /tasks/swift_key_setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/swift_key_setup.yml -------------------------------------------------------------------------------- /tasks/swift_post_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/swift_post_install.yml -------------------------------------------------------------------------------- /tasks/swift_pre_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/swift_pre_install.yml -------------------------------------------------------------------------------- /tasks/swift_proxy_hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/swift_proxy_hosts.yml -------------------------------------------------------------------------------- /tasks/swift_pypy_setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/swift_pypy_setup.yml -------------------------------------------------------------------------------- /tasks/swift_rings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/swift_rings.yml -------------------------------------------------------------------------------- /tasks/swift_rings_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/swift_rings_build.yml -------------------------------------------------------------------------------- /tasks/swift_rings_distribute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/swift_rings_distribute.yml -------------------------------------------------------------------------------- /tasks/swift_rings_post_distribution_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/swift_rings_post_distribution_check.yml -------------------------------------------------------------------------------- /tasks/swift_storage_hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/swift_storage_hosts.yml -------------------------------------------------------------------------------- /tasks/swift_storage_hosts_account.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/swift_storage_hosts_account.yml -------------------------------------------------------------------------------- /tasks/swift_storage_hosts_container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/swift_storage_hosts_container.yml -------------------------------------------------------------------------------- /tasks/swift_storage_hosts_object.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/swift_storage_hosts_object.yml -------------------------------------------------------------------------------- /tasks/swift_storage_hosts_setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tasks/swift_storage_hosts_setup.yml -------------------------------------------------------------------------------- /templates/account-server-replicator.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/account-server-replicator.conf.j2 -------------------------------------------------------------------------------- /templates/account-server.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/account-server.conf.j2 -------------------------------------------------------------------------------- /templates/container-reconciler.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/container-reconciler.conf.j2 -------------------------------------------------------------------------------- /templates/container-server-replicator.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/container-server-replicator.conf.j2 -------------------------------------------------------------------------------- /templates/container-server.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/container-server.conf.j2 -------------------------------------------------------------------------------- /templates/container-sync-realms.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/container-sync-realms.conf.j2 -------------------------------------------------------------------------------- /templates/drive-audit.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/drive-audit.conf.j2 -------------------------------------------------------------------------------- /templates/internal-client.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/internal-client.conf.j2 -------------------------------------------------------------------------------- /templates/object-expirer.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/object-expirer.conf.j2 -------------------------------------------------------------------------------- /templates/object-server-replicator.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/object-server-replicator.conf.j2 -------------------------------------------------------------------------------- /templates/object-server.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/object-server.conf.j2 -------------------------------------------------------------------------------- /templates/proxy-server.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/proxy-server.conf.j2 -------------------------------------------------------------------------------- /templates/ring.contents.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/ring.contents.j2 -------------------------------------------------------------------------------- /templates/rsyncd.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/rsyncd.conf.j2 -------------------------------------------------------------------------------- /templates/swift-dispersion.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/swift-dispersion.conf.j2 -------------------------------------------------------------------------------- /templates/swift-memcache.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/swift-memcache.conf.j2 -------------------------------------------------------------------------------- /templates/swift.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/swift.conf.j2 -------------------------------------------------------------------------------- /templates/swift_rings.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/swift_rings.py.j2 -------------------------------------------------------------------------------- /templates/swift_rings_check.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/templates/swift_rings_check.py.j2 -------------------------------------------------------------------------------- /tests/ansible-role-requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tests/ansible-role-requirements.yml -------------------------------------------------------------------------------- /tests/group_vars/all_containers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tests/group_vars/all_containers.yml -------------------------------------------------------------------------------- /tests/host_vars/infra1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tests/host_vars/infra1.yml -------------------------------------------------------------------------------- /tests/host_vars/localhost.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tests/host_vars/localhost.yml -------------------------------------------------------------------------------- /tests/host_vars/swift-proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tests/host_vars/swift-proxy.yml -------------------------------------------------------------------------------- /tests/host_vars/swift-storage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tests/host_vars/swift-storage1.yml -------------------------------------------------------------------------------- /tests/host_vars/swift-storage2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tests/host_vars/swift-storage2.yml -------------------------------------------------------------------------------- /tests/host_vars/swift-storage3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tests/host_vars/swift-storage3.yml -------------------------------------------------------------------------------- /tests/inventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tests/inventory -------------------------------------------------------------------------------- /tests/os_swift-overrides.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tests/os_swift-overrides.yml -------------------------------------------------------------------------------- /tests/s3cfg.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tests/s3cfg.j2 -------------------------------------------------------------------------------- /tests/swift_test.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tests/swift_test.conf.j2 -------------------------------------------------------------------------------- /tests/test-swift-functional.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tests/test-swift-functional.yml -------------------------------------------------------------------------------- /tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tests/test.yml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/tox.ini -------------------------------------------------------------------------------- /vars/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/vars/debian.yml -------------------------------------------------------------------------------- /vars/distro_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/vars/distro_install.yml -------------------------------------------------------------------------------- /vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/vars/main.yml -------------------------------------------------------------------------------- /vars/redhat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/vars/redhat.yml -------------------------------------------------------------------------------- /vars/source_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/vars/source_install.yml -------------------------------------------------------------------------------- /zuul.d/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_swift/HEAD/zuul.d/project.yaml --------------------------------------------------------------------------------