diff options
author | Jenkins <jenkins@review.openstack.org> | 2017-05-18 23:14:45 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-05-18 23:14:45 +0000 |
commit | 3ca1a2d99d8c10f14a01213279480c21827ae345 (patch) | |
tree | 8ae86a7905c9d6807cb1330e1389665ec60f45e7 | |
parent | eabb6d7c304aac8f98c3096725aadace302c8173 (diff) | |
parent | 9efa81796e3edd3017d19ff3544f52874b7a2df6 (diff) |
Merge "neutron: set enable_dvr = False if NeutronEnableDVR is false"
-rw-r--r-- | puppet/services/neutron-api.yaml | 1 | ||||
-rw-r--r-- | releasenotes/notes/match-enable_dvr-with-NeutronEnableDVR-fe8aac6c4ce52bce.yaml | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/puppet/services/neutron-api.yaml b/puppet/services/neutron-api.yaml index b4a21a31..8e1e0b80 100644 --- a/puppet/services/neutron-api.yaml +++ b/puppet/services/neutron-api.yaml @@ -166,6 +166,7 @@ outputs: - 9696 - 13696 neutron::server::router_distributed: {get_param: NeutronEnableDVR} + neutron::server::enable_dvr: {get_param: NeutronEnableDVR} # NOTE: bind IP is found in Heat replacing the network name with the local node IP # for the given network; replacement examples (eg. for internal_api): # internal_api -> IP diff --git a/releasenotes/notes/match-enable_dvr-with-NeutronEnableDVR-fe8aac6c4ce52bce.yaml b/releasenotes/notes/match-enable_dvr-with-NeutronEnableDVR-fe8aac6c4ce52bce.yaml new file mode 100644 index 00000000..54400432 --- /dev/null +++ b/releasenotes/notes/match-enable_dvr-with-NeutronEnableDVR-fe8aac6c4ce52bce.yaml @@ -0,0 +1,6 @@ +--- +upgrade: + - | + Neutron API controller no longer advertises ``dvr`` extension if the + cloud is not configured for DVR. This is achieved by setting ``enable_dvr`` + to match ``NeutronEnableDVR`` setting. |