From 8a427f5209b3df71793b6b6311710925cfa18959 Mon Sep 17 00:00:00 2001 From: Kailun Qin Date: Tue, 26 Feb 2019 01:20:10 +0800 Subject: [PATCH] Add NETWORK_SEGMENT_RANGE plugin constant Define a NETWORK_SEGMENT_RANGE constant so that it can be used elsewhere related to the ``network_segment_range`` service plugin. Co-authored-by: Allain Legacy Partially-implements: blueprint network-segment-range-management Change-Id: I31581e98ce57906ec62ad933f5d37a772c33e846 --- neutron_lib/plugins/constants.py | 1 + ...twork-segment-range-plugin-constant-9e80453919162c89.yaml | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 releasenotes/notes/add-network-segment-range-plugin-constant-9e80453919162c89.yaml diff --git a/neutron_lib/plugins/constants.py b/neutron_lib/plugins/constants.py index 4459a9689..a67439cbb 100644 --- a/neutron_lib/plugins/constants.py +++ b/neutron_lib/plugins/constants.py @@ -25,3 +25,4 @@ L3 = 'L3_ROUTER_NAT' LOG_API = "LOGGING" PORTFORWARDING = "PORTFORWARDING" FLOATINGIPPOOL = "FLOATINGIPPOOL" +NETWORK_SEGMENT_RANGE = "NETWORK_SEGMENT_RANGE" diff --git a/releasenotes/notes/add-network-segment-range-plugin-constant-9e80453919162c89.yaml b/releasenotes/notes/add-network-segment-range-plugin-constant-9e80453919162c89.yaml new file mode 100644 index 000000000..459efbb41 --- /dev/null +++ b/releasenotes/notes/add-network-segment-range-plugin-constant-9e80453919162c89.yaml @@ -0,0 +1,5 @@ +other: + - | + Add the ``neutron_lib.plugins.constants.NETWORK_SEGMENT_RANGE`` constant so + that it can be used elsewhere related to the ``network_segment_range`` + service plugin.