CentOS: Use modular libvirt for all scenarios

Now modular libvirt is the recommended architecture in RHEL/CentOS 9,
and we switched the default in Red Hat family operating systems to
use it.

Depends-on: https://review.opendev.org/920722
Change-Id: I043ef1b13a9dd3f694b740841b7e8628e5b95ac7
This commit is contained in:
Takashi Kajinami
2024-06-11 17:32:43 +09:00
parent 3956da6b29
commit 4895fe245b

View File

@@ -23,12 +23,10 @@ if $facts['os']['name'] == 'Ubuntu' {
case $facts['os']['family'] {
'Debian': {
$ipv6 = false
$modular_libvirt = false
$ovn_metadata_agent_enabled = true
}
'RedHat': {
$ipv6 = true
$modular_libvirt = true
$ovn_metadata_agent_enabled = false
}
default: {
@@ -62,7 +60,6 @@ class { 'openstack_integration::neutron':
include openstack_integration::placement
class { 'openstack_integration::nova':
cinder_enabled => true,
modular_libvirt => $modular_libvirt,
libvirt_guests_enabled => true,
}
class { 'openstack_integration::octavia':