NSX|V: set the edge_ha default state to be False

This is required to ensure backward comapatibility.

Change-Id: I1c912fcca8bd81aa86f9729885b7780ac564fd44
Closes-bug: #1499181
This commit is contained in:
Gary Kotton 2015-09-23 23:31:40 -07:00
parent 2d05948845
commit 689e4aa678
2 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@
# spoofguard_enabled = True
# (Optional) Deploys NSX Edges in HA mode
# edge_ha = True
# edge_ha = False
# (ListOpt) Ordered list of router_types to allocate as tenant routers.
# It limits the router types that the Nsxv can support for tenants:
# distributed: router is supported by distributed edge at the backend.

View File

@ -323,7 +323,7 @@ nsxv_opts = [
help=_("If True, the server instance will attempt to "
"initialize the metadata infrastructure")),
cfg.BoolOpt('edge_ha',
default=True,
default=False,
help=_("Enable HA for NSX Edges"))
]