neutron/neutron/objects
Slawek Kaplonski e8e38d67b2 [DVR] Send allowed address pairs info to the L3 agents
When new dvr router is going to be created on the node, L3 agent
asks server for list of ports plugged to the subnets, to populate
arp entries for all fixed IPs from those ports.
There was missing info about allowed address pairs there, so those
IPs were not populated in the qrouter namespace.
Now it's added and L3 agent can add those arp entries to the qrouter
namespaces too.

Conflicts:
    neutron/agent/l3/dvr_local_router.py
    neutron/objects/port/extensions/allowedaddresspairs.py
    neutron/tests/unit/db/test_l3_dvr_db.py

Closes-Bug: #1928466
Change-Id: I5d6c72c271ff450d9e43b3e33a99dd59d727882d
(cherry picked from commit 7b59b5069b)
2021-05-24 11:13:17 +02:00
..
db remove the neutron.db._model_query module 2019-01-25 08:55:25 -07:00
extensions Tag mechanism supports resources with standard attribute 2017-07-25 08:14:04 +09:00
logapi [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
plugins Fix queries to retrieve allocations with network_segment_range 2020-04-30 11:00:41 +00:00
port [DVR] Send allowed address pairs info to the L3 agents 2021-05-24 11:13:17 +02:00
qos Allow sharing of security groups via RBAC mechanism 2019-03-09 17:30:14 -06:00
README.rst Objects: Add README for neutron/objects directory tree 2016-10-07 15:12:20 +00:00
__init__.py Use dirname in object recursive import 2017-04-20 04:35:10 -07:00
address_scope.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
agent.py New agent attribute: resources_synced 2019-02-21 13:45:15 +01:00
auto_allocate.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
base.py Use dynamic lazy mode for fetching security group rules 2019-03-14 16:23:53 -06:00
common_types.py Support Network Segment Range CRUD as extensions 2019-03-07 08:20:30 +00:00
flavor.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
floatingip.py Integration of Floating IP OVO 2017-12-04 19:30:02 +09:00
ipam.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
l3_hamode.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
l3agent.py Fix pep8 E128 warnings in non-test code 2019-03-12 21:22:33 +00:00
metering.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
network.py Fix pep8 E128 warnings in non-test code 2019-03-12 21:22:33 +00:00
network_segment_range.py Default (shared) network segment range is not mandatory 2020-05-04 14:02:23 +00:00
port_forwarding.py Fix pylint R1714 (consider-using-in) refactor messages 2019-02-21 21:11:34 +00:00
ports.py Handle ports assigned to routers without routerports 2019-10-15 09:17:59 +00:00
provisioning_blocks.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
quota.py Fix invalid JSON generated by quota details 2021-03-19 15:34:49 +00:00
rbac.py Use RBACBaseObject OVO in neutron/db/rbac_db_mixin.py 2018-11-08 13:41:36 +00:00
rbac_db.py Fix list security groups performance with RBAC 2019-07-10 14:34:50 +00:00
router.py Fix pep8 E128 warnings in non-test code 2019-03-12 21:22:33 +00:00
securitygroup.py Filter by owner SGs when retrieving the SG rules 2020-04-14 18:39:46 +00:00
servicetype.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
stdattrs.py Allow objects to opt in new engine facade 2018-02-09 04:07:34 +00:00
subnet.py Switch to new engine facade for Route objects 2019-06-06 16:13:22 +00:00
subnetpool.py Allow objects to opt in new engine facade 2018-02-09 04:07:34 +00:00
tag.py Fix pep8 E128 warnings in non-test code 2019-03-12 21:22:33 +00:00
trunk.py Allow objects to opt in new engine facade 2018-02-09 04:07:34 +00:00

README.rst

Neutron Objects

Directory

This directory is designed to contain all modules which have objects definitions shipped with core Neutron. The files and directories located inside of this directory should follow the guidelines below.

Structure

The Neutron objects tree should have the following structure:

  • The expected directory structure is flat, except for the ML2 plugins. All ML2 plugin objects should fall under the plugins subdirectory (i.e. plugins/ml2/gre_allocation).
  • Module names should use singular forms for nouns (network.py, not networks.py).