From 689e4aa6785f9864f50f7418c4f1f847100c4a0c Mon Sep 17 00:00:00 2001 From: Gary Kotton Date: Wed, 23 Sep 2015 23:31:40 -0700 Subject: [PATCH] NSX|V: set the edge_ha default state to be False This is required to ensure backward comapatibility. Change-Id: I1c912fcca8bd81aa86f9729885b7780ac564fd44 Closes-bug: #1499181 --- etc/nsx.ini | 2 +- vmware_nsx/common/config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/nsx.ini b/etc/nsx.ini index a94047601d..faf2f2bf8d 100644 --- a/etc/nsx.ini +++ b/etc/nsx.ini @@ -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. diff --git a/vmware_nsx/common/config.py b/vmware_nsx/common/config.py index 2fa8ee485b..6fbae48a3c 100644 --- a/vmware_nsx/common/config.py +++ b/vmware_nsx/common/config.py @@ -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")) ]