forked from openstack-archive/networking-ovn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployment fixes for DHCP and metadata support
OVN native L3 and DHCP don't provide metadata support so config drive must be used when both are enabled. However, if the conventional DHCP agent is enabled it can be configured to provide metadata support. This patch set provides the necessary DevStack and Vagrant deployment fixes to properly configure DHCP and metadata support. In addition, documentation and release notes have been updated accordingly. And finally, the q-meta service was removed from devstackgatekuryrrc, since the gate job is setup for OVN native services. Co-Authored-By: Matt Kassawara <[email protected]> Change-Id: I9f6b23247df01c40c127b0e9daecd12f5721ff50 Related-Bug: #1514488
- Loading branch information
1 parent
c971a24
commit 2ed6da5
Showing
8 changed files
with
115 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,61 @@ | ||
--- | ||
features: | ||
- | | ||
This is the initial release of OpenStack neutron integration with OVN. | ||
OVN provides virtual networking for Open vSwitch and is a component of | ||
the `Open vSwitch <http://openvswitch.org/>`_ project. The following | ||
virtual networking features are available. Some features are provided | ||
via a native OVN implementation or via a conventional neutron agent. | ||
Initial release of the OpenStack Networking service (neutron) | ||
integration with Open Virtual Network (OVN), a component of the | ||
the `Open vSwitch <http://openvswitch.org/>`_ project. OVN provides | ||
the following features either via native implementation or | ||
conventional agents: | ||
* Layer-2 switching (native OVN implementation) | ||
* Layer-3 routing (native OVN implementation or conventional | ||
neutron layer-3 agent) The native OVN implementation supports | ||
distributed routing. However, it currently lacks support for | ||
floating IP addresses and NAT. | ||
* DHCP (native OVN implementation or conventional neuron DHCP agent) | ||
* Layer-2 (native OVN implementation) | ||
* Layer-3 (native OVN implementation or conventional layer-3 agent) | ||
The native OVN implementation supports distributed routing. However, | ||
it currently lacks support for floating IP addresses, NAT, and the | ||
metadata proxy. | ||
* DHCP (native OVN implementation or conventional DHCP agent) | ||
The native implementation supports distributed DHCP. However, | ||
it currently lacks IPv6 support and support for the Neutron | ||
internal DNS and metadata proxy features. | ||
* Metadata (conventional neutron metadata agent) | ||
* DPDK - May be used with OVS using either the Linux kernel | ||
datapath or the DPDK datapath. | ||
it currently lacks support for IPv6, internal DNS, and metadata | ||
proxy. | ||
* Metadata (conventional metadata agent) | ||
* DPDK - Usable with OVS via either the Linux kernel datapath | ||
or the DPDK datapath. | ||
The initial release also supports the following neutron API | ||
extensions, ``agent``, ``Address Scopes`` \*, | ||
``Allowed Address Pairs``, ``Auto Allocated Topology Services``, | ||
``Availability Zone``, ``Default Subnetpools``, | ||
``DHCP Agent Scheduler`` \*\*, ``Distributed Virtual Router`` \*, | ||
``DNS Integration`` \*, ``HA Router extension`` \*, | ||
``L3 Agent Scheduler`` \*, | ||
``Network Availability Zone`` \*\*, ``Network IP Availability``, | ||
``Neutron external network``, ``Neutron Extra DHCP opts``, | ||
``Neutron Extra Route``, | ||
``Neutron L3 Configurable external gateway mode`` \*, | ||
``Neutron L3 Router``, | ||
``Network MTU``, ``Port Binding``, ``Port Security``, | ||
``Provider Network``, ``Quality of Service``, | ||
``Quota management support``, ``RBAC Policies``, | ||
``Resource revision numbers``, | ||
``Router Availability Zone`` \*, ``security-group``, | ||
``standard-attr-description``, ``Subnet Allocation``, | ||
``Tag support`` and ``Time Stamp Fields``. | ||
The initial release also supports the following Networking service | ||
API extensions: | ||
(\*) Only applicable when conventional neutron layer-3 agent enabled. | ||
* ``agent`` | ||
* ``Address Scopes`` \* | ||
* ``Allowed Address Pairs`` | ||
* ``Auto Allocated Topology Services`` | ||
* ``Availability Zone`` | ||
* ``Default Subnetpools`` | ||
* ``DHCP Agent Scheduler`` \*\* | ||
* ``Distributed Virtual Router`` \* | ||
* ``DNS Integration`` \* | ||
* ``HA Router extension`` \* | ||
* ``L3 Agent Scheduler`` \* | ||
* ``Network Availability Zone`` \*\* | ||
* ``Network IP Availability`` | ||
* ``Neutron external network`` | ||
* ``Neutron Extra DHCP opts`` | ||
* ``Neutron Extra Route`` | ||
* ``Neutron L3 Configurable external gateway mode`` \* | ||
* ``Neutron L3 Router`` | ||
* ``Network MTU`` | ||
* ``Port Binding`` | ||
* ``Port Security`` | ||
* ``Provider Network`` | ||
* ``Quality of Service`` | ||
* ``Quota management support`` | ||
* ``RBAC Policies`` | ||
* ``Resource revision numbers`` | ||
* ``Router Availability Zone`` \* | ||
* ``security-group`` | ||
* ``standard-attr-description`` | ||
* ``Subnet Allocation`` | ||
* ``Tag support`` | ||
* ``Time Stamp Fields`` | ||
(\*\*) Only applicable when conventional DHCP agent enabled. | ||
(\*) Only applicable if using the conventional layer-3 agent. | ||
(\*\*) Only applicable if using the conventional DHCP agent. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters