@@ -53,8 +53,9 @@ kolla_node_custom_config_path: "{{ kolla_config_path }}/config"
5353# Kolla configuration.
5454
5555# Kolla base container image distribution. Options are "centos", "debian",
56- # "ubuntu". Default is {{ os_distribution }}.
57- kolla_base_distro: "{{ os_distribution }}"
56+ # "ubuntu". Default is
57+ # {{ 'centos' if os_distribution == 'rocky' else os_distribution }}.
58+ kolla_base_distro: "{{ 'centos' if os_distribution == 'rocky' else os_distribution }}"
5859
5960# Kolla container image type: binary or source.
6061kolla_install_type: "source"
@@ -154,6 +155,8 @@ overcloud_container_image_regex_map:
154155 enabled: "{{ kolla_enable_gnocchi | bool }}"
155156 - regex: ^grafana
156157 enabled: "{{ kolla_enable_grafana | bool }}"
158+ - regex: ^hacluster
159+ enabled: "{{ kolla_enable_hacluster | bool }}"
157160 - regex: ^haproxy$
158161 enabled: "{{ kolla_enable_haproxy | bool }}"
159162 - regex: ^heat
@@ -201,7 +204,7 @@ overcloud_container_image_regex_map:
201204 - regex: neutron-server
202205 enabled: "{{ kolla_enable_neutron | bool }}"
203206 # Neutron SFC agent not currently supported on CentOS binary builds.
204- - regex: "neutron-\\(dhcp\\|l3\\|metadata\\|openvswitch\\)-agent"
207+ - regex: "neutron-\\(dhcp\\|l3\\|metadata\\|linuxbridge\\| openvswitch\\)-agent"
205208 enabled: "{{ kolla_enable_neutron | bool }}"
206209 - regex: neutron-mlnx-agent
207210 enabled: "{{ kolla_enable_neutron_mlnx | bool }}"
@@ -534,6 +537,7 @@ kolla_enable_fluentd: "yes"
534537kolla_enable_freezer: "no"
535538kolla_enable_gnocchi: "no"
536539kolla_enable_grafana: "{{ kolla_enable_monasca | bool }}"
540+ kolla_enable_hacluster: "no"
537541kolla_enable_heat: "{{ kolla_enable_openstack_core | bool }}"
538542kolla_enable_horizon: "{{ kolla_enable_openstack_core | bool }}"
539543kolla_enable_influxdb: "{{ kolla_enable_monasca | bool or kolla_enable_cloudkitty | bool }}"
0 commit comments