From bc3600b3628605436834d4712a745dfe9c43ddf4 Mon Sep 17 00:00:00 2001 From: yatin Date: Fri, 20 Apr 2018 10:06:15 +0530 Subject: [PATCH] Add neutron "segments" plugin to the default list [1] Added a tests which requires "segments" plugin but we don't have it enabled in overcloud. It is enabled in neutron jobs from long[2]. This patch adds this plugin to the default enabled plugins. [1] https://review.openstack.org/#/c/558609/ [2] https://review.openstack.org/#/c/459439/ Related-Bug: #1765008 Change-Id: I1bc36c4533dcaadd81d7c93a194e9319217c69cd --- puppet/services/neutron-base.yaml | 2 +- ..._neutron_segments_plugin_to_default-8acb69b112d4b31c.yaml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/add_neutron_segments_plugin_to_default-8acb69b112d4b31c.yaml diff --git a/puppet/services/neutron-base.yaml b/puppet/services/neutron-base.yaml index c92dfc0ec3..bece4dc513 100644 --- a/puppet/services/neutron-base.yaml +++ b/puppet/services/neutron-base.yaml @@ -45,7 +45,7 @@ parameters: from neutron.core_plugins namespace. type: string NeutronServicePlugins: - default: "router,qos,trunk" + default: "router,qos,segments,trunk" description: | Comma-separated list of service plugin entrypoints to be loaded from the neutron.service_plugins namespace. diff --git a/releasenotes/notes/add_neutron_segments_plugin_to_default-8acb69b112d4b31c.yaml b/releasenotes/notes/add_neutron_segments_plugin_to_default-8acb69b112d4b31c.yaml new file mode 100644 index 0000000000..ceb99ebbf4 --- /dev/null +++ b/releasenotes/notes/add_neutron_segments_plugin_to_default-8acb69b112d4b31c.yaml @@ -0,0 +1,5 @@ +--- +other: + - | + Add "segments" service plugin to the default list of + neutron service plugins.