├── .gitignore ├── .gitreview ├── .zuul.yaml ├── LICENSE ├── README.rst ├── doc ├── requirements.txt └── source │ ├── conf.py │ ├── index.rst │ └── specs ├── requirements.txt ├── setup.cfg ├── setup.py ├── specs ├── antelope │ └── separated-haproxy-service-config.rst ├── kilo │ ├── add-plumgrid-neutron-plugin.rst │ ├── ceph-block-devices.rst │ ├── developer-docs.rst │ ├── implement-ceilometer.rst │ ├── keystone-federation.rst │ ├── keystone-sp-adfs-idp.rst │ ├── master-kilofication.rst │ ├── minimal-kilo.rst │ ├── modularize-neutron-plays.rst │ └── multi-region-swift.rst ├── liberty │ ├── compartementalize-rabbitmq.rst │ ├── enable-venv-support-within-the-roles.rst │ ├── liberty-release.rst │ ├── modularize-neutron-liberty.rst │ ├── named-veths.rst │ ├── plumgrid-support-liberty.rst │ ├── remove-upstream-repo-dependency.rst │ ├── role-haproxy-v2.rst │ ├── tunable-openstack-configuration.rst │ └── upgrade-mariadb-v10.rst ├── mitaka │ ├── build-facts-archive.rst │ ├── convert-aio-bootstrap-to-ansible.rst │ ├── independent-role-repositories.rst │ ├── install-guide.rst │ ├── irr-apt_package_pinning.rst │ ├── irr-galera.rst │ ├── irr-lxc_container_create.rst │ ├── irr-lxc_host.rst │ ├── irr-memcached_server.rst │ ├── irr-openstack_hosts.rst │ ├── irr-pip_install.rst │ ├── irr-pip_lock_down.rst │ ├── irr-rabbitmq.rst │ ├── irr-repo_server.rst │ ├── irr-rsyslog_client.rst │ ├── irr-rsyslog_server.rst │ ├── irr-utility.rst │ ├── lbaasv2.rst │ ├── limit-mysql-config-distribution.rst │ ├── modularize-config.rst │ ├── policy-files-distribution.rst │ ├── role-designate.rst │ ├── role-ironic.rst │ ├── role-zaqar.rst │ └── security-hardening.rst ├── newton │ ├── add-support-for-systemd.rst │ ├── gate-split.rst │ ├── ipv6-project-support.rst │ ├── monasca-ha-monasca-agent.rst │ ├── multi-arch-support.rst │ ├── only-install-venvs.rst │ ├── osa-install-guide-overhaul.rst │ ├── powervm-virt-driver.rst │ ├── role-gnocchi.rst │ ├── role-tacker.rst │ ├── security-rhel7-stig.rst │ ├── standalone-swift.rst │ ├── support-multiple-rabbitmq-clusters.rst │ └── xen-virt-driver.rst ├── ocata │ ├── .keep │ ├── create-ops-guide.rst │ └── octavia.rst ├── pike │ ├── centos-and-dnf.rst │ ├── inventory-pluggable-backends.rst │ ├── monitoring.rst │ ├── opendaylight.rst │ ├── ovs-nsh.rst │ └── replace-ip-generation.rst ├── queens │ ├── ansible-roles-reuse.rst │ ├── blazar.rst │ ├── congress.rst │ ├── deployment-stages.rst │ ├── docs-improvements.rst │ ├── elk-stack.rst │ ├── hybrid-messaging.rst │ ├── hyperconverged-containers.rst │ ├── opendaylight-bgpvpn.rst │ ├── python-build-install-simplification.rst │ └── restructure-repo-management-and-pip-install.yml ├── rocky │ ├── centralized-nginx.rst │ ├── masakari.rst │ ├── openstack-distribution-packages.rst │ └── refactor-inventory.rst ├── templates │ └── template.rst ├── wallaby │ └── ssl-root-ca.rst ├── xena │ └── protecting-plaintext-configs.rst └── zed │ └── internal-tls.rst └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/.gitreview -------------------------------------------------------------------------------- /.zuul.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/.zuul.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/README.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/specs: -------------------------------------------------------------------------------- 1 | ../../specs/ -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/setup.py -------------------------------------------------------------------------------- /specs/antelope/separated-haproxy-service-config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/antelope/separated-haproxy-service-config.rst -------------------------------------------------------------------------------- /specs/kilo/add-plumgrid-neutron-plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/kilo/add-plumgrid-neutron-plugin.rst -------------------------------------------------------------------------------- /specs/kilo/ceph-block-devices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/kilo/ceph-block-devices.rst -------------------------------------------------------------------------------- /specs/kilo/developer-docs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/kilo/developer-docs.rst -------------------------------------------------------------------------------- /specs/kilo/implement-ceilometer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/kilo/implement-ceilometer.rst -------------------------------------------------------------------------------- /specs/kilo/keystone-federation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/kilo/keystone-federation.rst -------------------------------------------------------------------------------- /specs/kilo/keystone-sp-adfs-idp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/kilo/keystone-sp-adfs-idp.rst -------------------------------------------------------------------------------- /specs/kilo/master-kilofication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/kilo/master-kilofication.rst -------------------------------------------------------------------------------- /specs/kilo/minimal-kilo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/kilo/minimal-kilo.rst -------------------------------------------------------------------------------- /specs/kilo/modularize-neutron-plays.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/kilo/modularize-neutron-plays.rst -------------------------------------------------------------------------------- /specs/kilo/multi-region-swift.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/kilo/multi-region-swift.rst -------------------------------------------------------------------------------- /specs/liberty/compartementalize-rabbitmq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/liberty/compartementalize-rabbitmq.rst -------------------------------------------------------------------------------- /specs/liberty/enable-venv-support-within-the-roles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/liberty/enable-venv-support-within-the-roles.rst -------------------------------------------------------------------------------- /specs/liberty/liberty-release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/liberty/liberty-release.rst -------------------------------------------------------------------------------- /specs/liberty/modularize-neutron-liberty.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/liberty/modularize-neutron-liberty.rst -------------------------------------------------------------------------------- /specs/liberty/named-veths.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/liberty/named-veths.rst -------------------------------------------------------------------------------- /specs/liberty/plumgrid-support-liberty.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/liberty/plumgrid-support-liberty.rst -------------------------------------------------------------------------------- /specs/liberty/remove-upstream-repo-dependency.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/liberty/remove-upstream-repo-dependency.rst -------------------------------------------------------------------------------- /specs/liberty/role-haproxy-v2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/liberty/role-haproxy-v2.rst -------------------------------------------------------------------------------- /specs/liberty/tunable-openstack-configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/liberty/tunable-openstack-configuration.rst -------------------------------------------------------------------------------- /specs/liberty/upgrade-mariadb-v10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/liberty/upgrade-mariadb-v10.rst -------------------------------------------------------------------------------- /specs/mitaka/build-facts-archive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/build-facts-archive.rst -------------------------------------------------------------------------------- /specs/mitaka/convert-aio-bootstrap-to-ansible.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/convert-aio-bootstrap-to-ansible.rst -------------------------------------------------------------------------------- /specs/mitaka/independent-role-repositories.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/independent-role-repositories.rst -------------------------------------------------------------------------------- /specs/mitaka/install-guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/install-guide.rst -------------------------------------------------------------------------------- /specs/mitaka/irr-apt_package_pinning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/irr-apt_package_pinning.rst -------------------------------------------------------------------------------- /specs/mitaka/irr-galera.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/irr-galera.rst -------------------------------------------------------------------------------- /specs/mitaka/irr-lxc_container_create.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/irr-lxc_container_create.rst -------------------------------------------------------------------------------- /specs/mitaka/irr-lxc_host.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/irr-lxc_host.rst -------------------------------------------------------------------------------- /specs/mitaka/irr-memcached_server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/irr-memcached_server.rst -------------------------------------------------------------------------------- /specs/mitaka/irr-openstack_hosts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/irr-openstack_hosts.rst -------------------------------------------------------------------------------- /specs/mitaka/irr-pip_install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/irr-pip_install.rst -------------------------------------------------------------------------------- /specs/mitaka/irr-pip_lock_down.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/irr-pip_lock_down.rst -------------------------------------------------------------------------------- /specs/mitaka/irr-rabbitmq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/irr-rabbitmq.rst -------------------------------------------------------------------------------- /specs/mitaka/irr-repo_server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/irr-repo_server.rst -------------------------------------------------------------------------------- /specs/mitaka/irr-rsyslog_client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/irr-rsyslog_client.rst -------------------------------------------------------------------------------- /specs/mitaka/irr-rsyslog_server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/irr-rsyslog_server.rst -------------------------------------------------------------------------------- /specs/mitaka/irr-utility.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/irr-utility.rst -------------------------------------------------------------------------------- /specs/mitaka/lbaasv2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/lbaasv2.rst -------------------------------------------------------------------------------- /specs/mitaka/limit-mysql-config-distribution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/limit-mysql-config-distribution.rst -------------------------------------------------------------------------------- /specs/mitaka/modularize-config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/modularize-config.rst -------------------------------------------------------------------------------- /specs/mitaka/policy-files-distribution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/policy-files-distribution.rst -------------------------------------------------------------------------------- /specs/mitaka/role-designate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/role-designate.rst -------------------------------------------------------------------------------- /specs/mitaka/role-ironic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/role-ironic.rst -------------------------------------------------------------------------------- /specs/mitaka/role-zaqar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/role-zaqar.rst -------------------------------------------------------------------------------- /specs/mitaka/security-hardening.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/mitaka/security-hardening.rst -------------------------------------------------------------------------------- /specs/newton/add-support-for-systemd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/newton/add-support-for-systemd.rst -------------------------------------------------------------------------------- /specs/newton/gate-split.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/newton/gate-split.rst -------------------------------------------------------------------------------- /specs/newton/ipv6-project-support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/newton/ipv6-project-support.rst -------------------------------------------------------------------------------- /specs/newton/monasca-ha-monasca-agent.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/newton/monasca-ha-monasca-agent.rst -------------------------------------------------------------------------------- /specs/newton/multi-arch-support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/newton/multi-arch-support.rst -------------------------------------------------------------------------------- /specs/newton/only-install-venvs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/newton/only-install-venvs.rst -------------------------------------------------------------------------------- /specs/newton/osa-install-guide-overhaul.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/newton/osa-install-guide-overhaul.rst -------------------------------------------------------------------------------- /specs/newton/powervm-virt-driver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/newton/powervm-virt-driver.rst -------------------------------------------------------------------------------- /specs/newton/role-gnocchi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/newton/role-gnocchi.rst -------------------------------------------------------------------------------- /specs/newton/role-tacker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/newton/role-tacker.rst -------------------------------------------------------------------------------- /specs/newton/security-rhel7-stig.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/newton/security-rhel7-stig.rst -------------------------------------------------------------------------------- /specs/newton/standalone-swift.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/newton/standalone-swift.rst -------------------------------------------------------------------------------- /specs/newton/support-multiple-rabbitmq-clusters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/newton/support-multiple-rabbitmq-clusters.rst -------------------------------------------------------------------------------- /specs/newton/xen-virt-driver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/newton/xen-virt-driver.rst -------------------------------------------------------------------------------- /specs/ocata/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs/ocata/create-ops-guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/ocata/create-ops-guide.rst -------------------------------------------------------------------------------- /specs/ocata/octavia.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/ocata/octavia.rst -------------------------------------------------------------------------------- /specs/pike/centos-and-dnf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/pike/centos-and-dnf.rst -------------------------------------------------------------------------------- /specs/pike/inventory-pluggable-backends.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/pike/inventory-pluggable-backends.rst -------------------------------------------------------------------------------- /specs/pike/monitoring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/pike/monitoring.rst -------------------------------------------------------------------------------- /specs/pike/opendaylight.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/pike/opendaylight.rst -------------------------------------------------------------------------------- /specs/pike/ovs-nsh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/pike/ovs-nsh.rst -------------------------------------------------------------------------------- /specs/pike/replace-ip-generation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/pike/replace-ip-generation.rst -------------------------------------------------------------------------------- /specs/queens/ansible-roles-reuse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/queens/ansible-roles-reuse.rst -------------------------------------------------------------------------------- /specs/queens/blazar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/queens/blazar.rst -------------------------------------------------------------------------------- /specs/queens/congress.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/queens/congress.rst -------------------------------------------------------------------------------- /specs/queens/deployment-stages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/queens/deployment-stages.rst -------------------------------------------------------------------------------- /specs/queens/docs-improvements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/queens/docs-improvements.rst -------------------------------------------------------------------------------- /specs/queens/elk-stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/queens/elk-stack.rst -------------------------------------------------------------------------------- /specs/queens/hybrid-messaging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/queens/hybrid-messaging.rst -------------------------------------------------------------------------------- /specs/queens/hyperconverged-containers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/queens/hyperconverged-containers.rst -------------------------------------------------------------------------------- /specs/queens/opendaylight-bgpvpn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/queens/opendaylight-bgpvpn.rst -------------------------------------------------------------------------------- /specs/queens/python-build-install-simplification.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/queens/python-build-install-simplification.rst -------------------------------------------------------------------------------- /specs/queens/restructure-repo-management-and-pip-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/queens/restructure-repo-management-and-pip-install.yml -------------------------------------------------------------------------------- /specs/rocky/centralized-nginx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/rocky/centralized-nginx.rst -------------------------------------------------------------------------------- /specs/rocky/masakari.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/rocky/masakari.rst -------------------------------------------------------------------------------- /specs/rocky/openstack-distribution-packages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/rocky/openstack-distribution-packages.rst -------------------------------------------------------------------------------- /specs/rocky/refactor-inventory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/rocky/refactor-inventory.rst -------------------------------------------------------------------------------- /specs/templates/template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/templates/template.rst -------------------------------------------------------------------------------- /specs/wallaby/ssl-root-ca.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/wallaby/ssl-root-ca.rst -------------------------------------------------------------------------------- /specs/xena/protecting-plaintext-configs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/xena/protecting-plaintext-configs.rst -------------------------------------------------------------------------------- /specs/zed/internal-tls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/specs/zed/internal-tls.rst -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-specs/HEAD/tox.ini --------------------------------------------------------------------------------