summaryrefslogtreecommitdiffstats
path: root/lib/python/apex/network_settings.py
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2016-09-28 17:22:42 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-09-28 17:22:42 +0000
commit9239d8f96cdd4dfc014de2d211312c3719eceaca (patch)
treec61fca329350af8a14fd06d97c04ece040e1b9d4 /lib/python/apex/network_settings.py
parent523c9cb5bea77f19c909ebce4fa23c9676c4dd6d (diff)
parentd8059095ab25e5939373777330b955075d064ec6 (diff)
Merge "Removing --flat and network_isolation variables"
Diffstat (limited to 'lib/python/apex/network_settings.py')
-rw-r--r--lib/python/apex/network_settings.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/python/apex/network_settings.py b/lib/python/apex/network_settings.py
index 11798085..006d18c3 100644
--- a/lib/python/apex/network_settings.py
+++ b/lib/python/apex/network_settings.py
@@ -39,7 +39,7 @@ class NetworkSettings(dict):
for deploy.sh consumption. This object will later be used directly as
deployment script move to python.
"""
- def __init__(self, filename, network_isolation):
+ def __init__(self, filename):
init_dict = {}
if type(filename) is str:
with open(filename, 'r') as network_settings_file:
@@ -63,7 +63,6 @@ class NetworkSettings(dict):
# merge the apex specific config into the first class settings
merge(self, copy(self['apex']))
- self.network_isolation = network_isolation
self.enabled_network_list = []
self.nics = {COMPUTE: {}, CONTROLLER: {}}
self.nics_specified = {COMPUTE: False, CONTROLLER: False}