summaryrefslogtreecommitdiffstats
path: root/apex
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2017-09-21 19:06:46 +0000
committerTim Rozet <trozet@redhat.com>2017-09-30 15:09:55 +0000
commit17c64de8f2d9c86c0f80df8dddf7831210f5234a (patch)
tree9808e32cd5e522551ad54f6683f48e1e77efb1d0 /apex
parent5bbba78faa198976be1a1a5437d39cfa5059d896 (diff)
Adds Calipso scenario
Change-Id: Icc8a23e49c9ccc011481f6b97599d4f75873ebb1 Signed-off-by: Tim Rozet <trozet@redhat.com> (cherry picked from commit 1a824cf106f1996f184a7f699c754a7b72c501be)
Diffstat (limited to 'apex')
-rw-r--r--apex/deploy.py3
-rw-r--r--apex/settings/deploy_settings.py3
2 files changed, 5 insertions, 1 deletions
diff --git a/apex/deploy.py b/apex/deploy.py
index 8a3d13ed..5ec0f7fa 100644
--- a/apex/deploy.py
+++ b/apex/deploy.py
@@ -409,6 +409,9 @@ def main():
deploy_vars['congress'] = True
else:
deploy_vars['congress'] = False
+ deploy_vars['calipso'] = ds_opts.get('calipso', False)
+ deploy_vars['calipso_ip'] = net_settings['networks']['admin'][
+ 'installer_vm']['ip']
# TODO(trozet): this is probably redundant with getting external
# network info from undercloud.py
if 'external' in net_settings.enabled_network_list:
diff --git a/apex/settings/deploy_settings.py b/apex/settings/deploy_settings.py
index 164997ec..c0594056 100644
--- a/apex/settings/deploy_settings.py
+++ b/apex/settings/deploy_settings.py
@@ -33,7 +33,8 @@ OPT_DEPLOY_SETTINGS = ['performance',
'odl_vpp_routing_node',
'dvr',
'odl_vpp_netvirt',
- 'barometer']
+ 'barometer',
+ 'calipso']
VALID_ROLES = ['Controller', 'Compute', 'ObjectStorage']
VALID_PERF_OPTS = ['kernel', 'nova', 'vpp', 'ovs']