diff options
author | Brent Eagles <beagles@redhat.com> | 2016-08-24 13:03:22 -0230 |
---|---|---|
committer | Brent Eagles <beagles@redhat.com> | 2016-08-24 13:10:21 -0230 |
commit | ce39dbac56123354576d2c31674e1b18535b0111 (patch) | |
tree | 311ab16d1fa8c1eca860d382d98b17793344672f /environments | |
parent | 5c1b9864e36ab259035e614bca6794a7c00b081c (diff) |
Set NeutronL3HA to false when deploying DVR
This patch sets NeutronL3HA to false when the DVR environment is
included on deployment. L3 HA isn't supported with DVR routers and is
disabled by defaults in our templates but upgrading users might have it
enabled in their existing overclouds. Including the setting here with
an appropriate comment gives us some sort of mechanism to convey to the
upgrading user what they need to do. This will have no effect on users
not using L3 HA or deploying new overclouds.
Change-Id: If036ae2b88225f5a7d5f295eb5e6874d2fbb3f72
Diffstat (limited to 'environments')
-rw-r--r-- | environments/neutron-ovs-dvr.yaml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/environments/neutron-ovs-dvr.yaml b/environments/neutron-ovs-dvr.yaml index 223c2531..f60edb01 100644 --- a/environments/neutron-ovs-dvr.yaml +++ b/environments/neutron-ovs-dvr.yaml @@ -22,3 +22,11 @@ parameter_defaults: # We also need to set the proper agent mode for the L3 agent. This will only # affect the agent on the controller node. NeutronL3AgentMode: 'dvr_snat' + + # L3 HA isn't supported for DVR enabled routers. If upgrading from a system + # where L3 HA is enabled and has neutron routers configured, it is + # recommended setting this value to true until such time all routers can be + # migrated to DVR routers. Once migration of the routers is complete, + # NeutronL3HA can be returned to false. All new systems should be deployed + # with NeutronL3HA set to false. + NeutronL3HA: false |