Remove support for amqp1

Support is removed in oslo.messaging so we remove support in
openstack-ansible roles.

Change-Id: Id69e232df4ca40ac5fa5b5ca722188cb52e7bcfe
This commit is contained in:
Jonathan Rosser 2025-01-06 10:54:31 +00:00
parent a5df30bd04
commit 5b577e819e
2 changed files with 1 additions and 8 deletions

View File

@ -355,15 +355,8 @@ zun_pip_packages:
- pymysql
- systemd-python
## (Qdrouterd) integration
# TODO(ansmith): Change structure when more backends will be supported
zun_oslomsg_amqp1_enabled: "{{ zun_oslomsg_rpc_transport == 'amqp' }}"
zun_memcached_servers: "{{ memcached_servers }}"
zun_optional_oslomsg_amqp1_pip_packages:
- oslo.messaging[amqp1]
## Default service options used within all systemd unit files.
zun_service_defaults: {}

View File

@ -74,7 +74,7 @@
venv_install_destination_path: "{{ zun_bin | dirname }}"
venv_install_distro_package_list: "{{ zun_distro_packages }}"
venv_pip_install_args: "{{ zun_pip_install_args }}"
venv_pip_packages: "{{ zun_pip_packages | union((zun_oslomsg_amqp1_enabled | bool) | ternary(zun_optional_oslomsg_amqp1_pip_packages, [])) }}"
venv_pip_packages: "{{ zun_pip_packages }}"
venv_facts_when_changed:
- section: "zun"
option: "venv_tag"