From da95feb8cf77c0b328e96a9951cfad8635bd1b9b Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Fri, 24 Feb 2023 23:27:11 +0900 Subject: [PATCH] Neutron: Disable dhcp agent notification when ovn driver is used ... because we do not deploy dhcp agent when ovn driver is used. Change-Id: Icf6555ad43500d6449338d0ea6519ebd341bcb1b --- manifests/neutron.pp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/manifests/neutron.pp b/manifests/neutron.pp index 14ee61c80..cf919a03d 100644 --- a/manifests/neutron.pp +++ b/manifests/neutron.pp @@ -109,9 +109,12 @@ class openstack_integration::neutron ( } if $driver == 'ovn' { + $dhcp_agent_notification = false $plugins_list = ['qos', 'ovn-router', 'trunk'] $providers_list = undef } else { + $dhcp_agent_notification = true + $bgpvpn_plugin = $bgpvpn_enabled ? { true => 'bgpvpn', default => undef, @@ -178,6 +181,7 @@ class openstack_integration::neutron ( notification_topics => $notification_topics, notification_driver => 'messagingv2', global_physnet_mtu => $global_physnet_mtu, + dhcp_agent_notification => $dhcp_agent_notification, } class { 'neutron::client': } class { 'neutron::keystone::authtoken':