@@ -277,7 +277,12 @@ om_rabbitmq_cacert: "{{ rabbitmq_cacert }}"
277277om_enable_rabbitmq_high_availability : false
278278# Only enable quorum queues if you disable om_enable_rabbitmq_high_availability
279279om_enable_rabbitmq_quorum_queues : true
280- om_enable_queue_manager : false
280+ om_enable_queue_manager : true
281+ # Enabling om_enable_rabbitmq_transient_quorum_queue will have no effect
282+ # without also enabling om_enable_rabbitmq_quorum_queues.
283+ # om_enable_rabbitmq_transient_quorum_queue should only be used in conunction
284+ # with om_enable_queue_manager.
285+ om_enable_rabbitmq_transient_quorum_queue : " {{ om_enable_rabbitmq_quorum_queues | bool and om_enable_queue_manager | bool }}"
281286
282287# ###################
283288# Networking options
@@ -286,8 +291,6 @@ network_interface: "eth0"
286291neutron_external_interface : " eth1"
287292kolla_external_vip_interface : " {{ network_interface }}"
288293api_interface : " {{ network_interface }}"
289- swift_storage_interface : " {{ network_interface }}"
290- swift_replication_interface : " {{ swift_storage_interface }}"
291294migration_interface : " {{ api_interface }}"
292295tunnel_interface : " {{ network_interface }}"
293296octavia_network_interface : " {{ 'o-hm0' if octavia_network_type == 'tenant' else api_interface }}"
@@ -302,8 +305,6 @@ ironic_tftp_interface: "{{ api_interface }}"
302305network_address_family : " ipv4"
303306api_address_family : " {{ network_address_family }}"
304307storage_address_family : " {{ network_address_family }}"
305- swift_storage_address_family : " {{ storage_address_family }}"
306- swift_replication_address_family : " {{ swift_storage_address_family }}"
307308migration_address_family : " {{ api_address_family }}"
308309tunnel_address_family : " {{ network_address_family }}"
309310octavia_network_address_family : " {{ api_address_family }}"
@@ -711,17 +712,6 @@ skyline_console_listen_port: "{{ skyline_console_port }}"
711712skyline_console_public_port : " {{ haproxy_single_external_frontend_public_port if haproxy_single_external_frontend | bool else skyline_console_port }}"
712713skyline_enable_sso : " {{ enable_keystone_federation | bool and keystone_identity_providers | selectattr('protocol', 'equalto', 'openid') | list | count > 0 }}"
713714
714- swift_internal_fqdn : " {{ kolla_internal_fqdn }}"
715- swift_external_fqdn : " {{ kolla_external_fqdn }}"
716- swift_internal_base_endpoint : " {{ swift_internal_fqdn | kolla_url(internal_protocol, swift_proxy_server_port) }}"
717- swift_public_base_endpoint : " {{ swift_external_fqdn | kolla_url(public_protocol, swift_proxy_server_port) }}"
718- swift_proxy_server_port : " 8080"
719- swift_proxy_server_listen_port : " {{ swift_proxy_server_port }}"
720- swift_object_server_port : " 6000"
721- swift_account_server_port : " 6001"
722- swift_container_server_port : " 6002"
723- swift_rsync_port : " 10873"
724-
725715syslog_udp_port : " {{ fluentd_syslog_port }}"
726716
727717tacker_internal_fqdn : " {{ kolla_internal_fqdn }}"
@@ -862,6 +852,7 @@ enable_cinder_backend_pure_iscsi: "no"
862852enable_cinder_backend_pure_fc : " no"
863853enable_cinder_backend_pure_roce : " no"
864854enable_cinder_backend_pure_nvme_tcp : " no"
855+ enable_cinder_backend_lightbits : " no"
865856enable_cloudkitty : " no"
866857enable_collectd : " no"
867858enable_cyborg : " no"
@@ -947,9 +938,6 @@ enable_prometheus: "no"
947938enable_proxysql : " yes"
948939enable_redis : " no"
949940enable_skyline : " no"
950- enable_swift : " no"
951- enable_swift_s3api : " no"
952- enable_swift_recon : " no"
953941enable_tacker : " no"
954942enable_telegraf : " no"
955943enable_trove : " no"
@@ -1106,12 +1094,11 @@ openstack_auth:
11061094# ######################
11071095# Glance options
11081096# ######################
1109- glance_backend_file : " {{ not (glance_backend_ceph | bool or glance_backend_s3 | bool or glance_backend_swift | bool or glance_backend_vmware | bool) }}"
1097+ glance_backend_file : " {{ not (glance_backend_ceph | bool or glance_backend_s3 | bool or glance_backend_vmware | bool) }}"
11101098glance_backend_ceph : " no"
11111099glance_backend_vmware : " no"
11121100glance_backend_s3 : " no"
11131101enable_glance_image_cache : " no"
1114- glance_backend_swift : " {{ enable_swift | bool }}"
11151102glance_file_datadir_volume : " glance"
11161103glance_enable_rolling_upgrade : " no"
11171104glance_enable_property_protection : " no"
@@ -1130,8 +1117,8 @@ barbican_library_path: "/usr/lib/libCryptoki2_64.so"
11301117# ################
11311118# Gnocchi options
11321119# ################
1133- # Valid options are [ file, ceph, swift ]
1134- gnocchi_backend_storage : " {% if enable_swift | bool %}swift{% else %} file{% endif %} "
1120+ # Valid options are [ file, ceph ]
1121+ gnocchi_backend_storage : " file"
11351122
11361123# Valid options are [redis, '']
11371124gnocchi_incoming_storage : " {{ 'redis' if enable_redis | bool else '' }}"
@@ -1150,7 +1137,7 @@ cinder_target_helper: "{{ 'lioadm' if ansible_facts.os_family == 'RedHat' else '
11501137# Valid options are [ '', redis, etcd ]
11511138cinder_coordination_backend : " {{ 'redis' if enable_redis | bool else 'etcd' if enable_etcd | bool else '' }}"
11521139
1153- # Valid options are [ nfs, swift, ceph, s3 ]
1140+ # Valid options are [ nfs, ceph, s3 ]
11541141cinder_backup_driver : " ceph"
11551142cinder_backup_share : " "
11561143cinder_backup_mount_options_nfs : " "
0 commit comments