summaryrefslogtreecommitdiffstats
path: root/deploy/deploy.py
diff options
context:
space:
mode:
authorzhongjun <zhong.jun@zte.com.cn>2017-06-22 10:31:14 +0800
committerzhongjun <zhong.jun@zte.com.cn>2017-06-23 13:54:56 +0800
commitccd2fe6cd04ed5e9a622a51d37bb1f0d97fc633b (patch)
tree0a3f3353d244d8f3441230975d1348b289c3f764 /deploy/deploy.py
parent420e2a340d66c481353683210f02ba06ba056433 (diff)
add the scenarios option
Add the scenarios option and yaml configuration files, currently only support three scenarios as below. os-nosdn-nofeature-noha/os-odl_l3-nofeature-noha/ os-odl_l2-nofeature-noha. we will support more secnarios such as os-odl_l3-nofeature-ha in future. Change-Id: I24d7875208e277f6ee1b794c0033d5fee6b5e371 Signed-off-by: zhongjun <zhong.jun@zte.com.cn>
Diffstat (limited to 'deploy/deploy.py')
-rw-r--r--deploy/deploy.py39
1 files changed, 34 insertions, 5 deletions
diff --git a/deploy/deploy.py b/deploy/deploy.py
index 5926a74d..88a5cba6 100644
--- a/deploy/deploy.py
+++ b/deploy/deploy.py
@@ -15,6 +15,7 @@
# [ ] 4. get ipmi user/password from PDF (Pod Descriptor File)
# [ ] 5. get pxe bridge from jjb
# [ ] 6. enlarge the vm size of Controller & Compute in deploy.yml
+# [ ] 7. support scenarios options and configuration
##############################################################################
import argparse
@@ -36,7 +37,9 @@ from utils import (
check_sudo_privilege,
check_file_exists,
make_file_executable,
- confirm_dir_exists
+ confirm_dir_exists,
+ merge_dicts,
+ check_scenario_valid
)
from environment import (
DaisyEnvironment,
@@ -46,13 +49,12 @@ from environment import (
class DaisyDeployment(object):
def __init__(self, lab_name, pod_name, deploy_file, net_file, bin_file,
daisy_only, cleanup_only, remote_dir, work_dir, storage_dir,
- pxe_bridge, deploy_log):
+ pxe_bridge, deploy_log, scenario):
self.lab_name = lab_name
self.pod_name = pod_name
self.deploy_file = deploy_file
- with open(deploy_file) as yaml_file:
- self.deploy_struct = yaml.safe_load(yaml_file)
+ self.deploy_struct = self._consturct_final_deploy_conf(deploy_file, scenario)
if not cleanup_only:
self.net_file = net_file
@@ -114,6 +116,27 @@ class DaisyDeployment(object):
'password': password,
'disk_size': disk_size}
+ def _consturct_final_deploy_conf(self, deploy_file, scenario):
+ with open(deploy_file) as yaml_file:
+ deploy_struct = yaml.safe_load(yaml_file)
+ scenario_file = path_join(WORKSPACE, 'deploy/scenario/scenario.yaml')
+ with open(scenario_file) as yaml_file:
+ scenario_trans_conf = yaml.safe_load(yaml_file)
+ if scenario in scenario_trans_conf:
+ fin_scenario_file = path_join(WORKSPACE, 'deploy/scenario',
+ scenario_trans_conf[scenario]['configfile'])
+ else:
+ fin_scenario_file = path_join(WORKSPACE, 'deploy/scenario', scenario)
+ with open(fin_scenario_file) as yaml_file:
+ deploy_scenario_conf = yaml.safe_load(yaml_file)
+ deploy_scenario_override_conf = deploy_scenario_conf['deploy-override-config']
+ # Only virtual deploy scenarios can override deploy.yml
+ if deploy_scenario_conf and (deploy_struct['adapter'] == 'libvirt'):
+ deploy_struct = dict(merge_dicts(deploy_struct, deploy_scenario_override_conf))
+ modules = deploy_scenario_conf['stack-extensions']
+ deploy_struct['modules'] = modules
+ return deploy_struct
+
def run(self):
self.daisy_env.delete_old_environment()
if self.cleanup_only:
@@ -168,6 +191,9 @@ def config_arg_parser():
parser.add_argument('-log', dest='deploy_log', action='store', nargs='?',
default=path_join(WORKSPACE, 'deploy.log'),
help='Path and name of the deployment log file')
+ parser.add_argument('-s', dest='scenario', action='store', nargs='?',
+ default='os-nosdn-nofeature-noha',
+ help='Deployment scenario')
return parser
@@ -178,6 +204,8 @@ def parse_arguments():
save_log_to_file(args.deploy_log)
LI(args)
+ check_scenario_valid(args.scenario)
+
conf_base_dir = path_join(WORKSPACE, 'labs', args.lab_name, args.pod_name)
deploy_file = path_join(conf_base_dir, 'daisy/config/deploy.yml')
net_file = path_join(conf_base_dir, 'daisy/config/network.yml')
@@ -202,7 +230,8 @@ def parse_arguments():
'work_dir': args.work_dir,
'storage_dir': args.storage_dir,
'pxe_bridge': args.pxe_bridge,
- 'deploy_log': args.deploy_log
+ 'deploy_log': args.deploy_log,
+ 'scenario': args.scenario
}
return kwargs