Bartek Grzybowski | fbbdbec | 2019-09-25 16:37:05 +0200 | [diff] [blame] | 1 | #!/usr/bin/env python |
Yang Xu | 1b31a1d | 2019-06-26 01:50:15 -0400 | [diff] [blame] | 2 | |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 3 | import logging |
Bartek Grzybowski | fbbdbec | 2019-09-25 16:37:05 +0200 | [diff] [blame] | 4 | logging.basicConfig(level=logging.INFO, format='%(asctime)s %(levelname)s %(name)s.%(funcName)s(): %(message)s') |
Yang Xu | 1b31a1d | 2019-06-26 01:50:15 -0400 | [diff] [blame] | 5 | |
| 6 | import sys |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 7 | from vcpecommon import * |
Yang Xu | c52ed6e | 2019-04-29 00:20:52 -0400 | [diff] [blame] | 8 | import sdcutils |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 9 | import soutils |
| 10 | from datetime import datetime |
| 11 | import preload |
| 12 | import vcpe_custom_service |
| 13 | import csar_parser |
| 14 | import config_sdnc_so |
Kang Xi | 6c76239 | 2018-05-30 09:27:34 -0400 | [diff] [blame] | 15 | import json |
Bartek Grzybowski | decd6fb6 | 2019-10-31 12:49:46 +0100 | [diff] [blame^] | 16 | import urllib3 |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 17 | |
Bartek Grzybowski | decd6fb6 | 2019-10-31 12:49:46 +0100 | [diff] [blame^] | 18 | # disable InsecureRequestWarning warning in requests < 2.16.0 |
| 19 | urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) |
| 20 | # disable InsecureRequestWarning warning in requests >= 2.16.0 |
| 21 | from requests.packages.urllib3.exceptions import InsecureRequestWarning |
| 22 | requests.packages.urllib3.disable_warnings(InsecureRequestWarning) |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 23 | |
| 24 | def config_sniro(vcpecommon, vgmux_svc_instance_uuid, vbrg_svc_instance_uuid): |
| 25 | logger = logging.getLogger(__name__) |
| 26 | |
| 27 | logger.info('\n----------------------------------------------------------------------------------') |
| 28 | logger.info('Start to config SNIRO homing emulator') |
| 29 | |
| 30 | preloader = preload.Preload(vcpecommon) |
| 31 | template_sniro_data = vcpecommon.find_file('sniro_data', 'json', 'preload_templates') |
| 32 | template_sniro_request = vcpecommon.find_file('sniro_request', 'json', 'preload_templates') |
| 33 | |
| 34 | vcperescust_csar = vcpecommon.find_file('rescust', 'csar', 'csar') |
| 35 | parser = csar_parser.CsarParser() |
| 36 | parser.parse_csar(vcperescust_csar) |
| 37 | tunnelxconn_ar_name = None |
| 38 | brg_ar_name = None |
| 39 | vgw_name = None |
| 40 | for model in parser.vnf_models: |
Yang Xu | 86c0e4a | 2018-12-02 13:10:41 -0500 | [diff] [blame] | 41 | logger.info('modelCustomizationName = %s', model['modelCustomizationName']) |
Yang Xu | 27e1624 | 2018-12-28 01:00:50 -0500 | [diff] [blame] | 42 | if 'tunnel' in model['modelCustomizationName'].lower(): |
Yang Xu | 86c0e4a | 2018-12-02 13:10:41 -0500 | [diff] [blame] | 43 | logger.info('tunnel is in %s', model['modelCustomizationName']) |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 44 | tunnelxconn_ar_name = model['modelCustomizationName'] |
Yang Xu | 27e1624 | 2018-12-28 01:00:50 -0500 | [diff] [blame] | 45 | elif 'brg' in model['modelCustomizationName'].lower(): |
Yang Xu | 86c0e4a | 2018-12-02 13:10:41 -0500 | [diff] [blame] | 46 | logger.info('brg is in %s', model['modelCustomizationName']) |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 47 | brg_ar_name = model['modelCustomizationName'] |
Yang Xu | 86c0e4a | 2018-12-02 13:10:41 -0500 | [diff] [blame] | 48 | #elif 'vgw' in model['modelCustomizationName']: |
| 49 | else: |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 50 | vgw_name = model['modelCustomizationName'] |
| 51 | |
| 52 | if not (tunnelxconn_ar_name and brg_ar_name and vgw_name): |
| 53 | logger.error('Cannot find all names from %s.', vcperescust_csar) |
Bartek Grzybowski | 68d93c2 | 2019-10-30 10:55:55 +0100 | [diff] [blame] | 54 | sys.exit(1) |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 55 | |
| 56 | preloader.preload_sniro(template_sniro_data, template_sniro_request, tunnelxconn_ar_name, vgw_name, brg_ar_name, |
| 57 | vgmux_svc_instance_uuid, vbrg_svc_instance_uuid) |
| 58 | |
| 59 | |
| 60 | def create_one_service(vcpecommon, csar_file, vnf_template_file, preload_dict, suffix, heatbridge=False): |
| 61 | """ |
| 62 | :return: service instance UUID |
| 63 | """ |
| 64 | so = soutils.SoUtils(vcpecommon, 'v4') |
| 65 | return so.create_entire_service(csar_file, vnf_template_file, preload_dict, suffix, heatbridge) |
| 66 | |
Kang Xi | 6c76239 | 2018-05-30 09:27:34 -0400 | [diff] [blame] | 67 | |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 68 | def deploy_brg_only(): |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 69 | logger = logging.getLogger(__name__) |
| 70 | |
| 71 | vcpecommon = VcpeCommon() |
| 72 | preload_dict = vcpecommon.load_preload_data() |
Kang Xi | 6c76239 | 2018-05-30 09:27:34 -0400 | [diff] [blame] | 73 | # name_suffix = preload_dict['${brg_bng_net}'].split('_')[-1] |
| 74 | name_suffix = datetime.now().strftime('%Y%m%d%H%M') |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 75 | |
| 76 | # create multiple services based on the pre-determined order |
| 77 | svc_instance_uuid = vcpecommon.load_object(vcpecommon.svc_instance_uuid_file) |
| 78 | for keyword in ['brg']: |
| 79 | heatbridge = 'gmux' == keyword |
| 80 | csar_file = vcpecommon.find_file(keyword, 'csar', 'csar') |
| 81 | vnf_template_file = vcpecommon.find_file(keyword, 'json', 'preload_templates') |
Kang Xi | 6c76239 | 2018-05-30 09:27:34 -0400 | [diff] [blame] | 82 | vcpecommon.increase_ip_address_or_vni_in_template(vnf_template_file, ['vbrgemu_private_ip_0']) |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 83 | svc_instance_uuid[keyword] = create_one_service(vcpecommon, csar_file, vnf_template_file, preload_dict, |
| 84 | name_suffix, heatbridge) |
| 85 | if not svc_instance_uuid[keyword]: |
Bartek Grzybowski | 68d93c2 | 2019-10-30 10:55:55 +0100 | [diff] [blame] | 86 | sys.exit(1) |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 87 | |
| 88 | # Setting up SNIRO |
Brian Freeman | 9b3d6ca | 2019-11-06 13:22:53 -0500 | [diff] [blame] | 89 | config_sniro(vcpecommon, svc_instance_uuid['gmux'], svc_instance_uuid['brgemu']) |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 90 | |
Kang Xi | 6c76239 | 2018-05-30 09:27:34 -0400 | [diff] [blame] | 91 | |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 92 | def deploy_infra(): |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 93 | logger = logging.getLogger(__name__) |
| 94 | |
| 95 | vcpecommon = VcpeCommon() |
| 96 | |
Brian Freeman | 9b3d6ca | 2019-11-06 13:22:53 -0500 | [diff] [blame] | 97 | # preload all VNF-API networks |
| 98 | network_template = vcpecommon.find_file('network.', 'json', 'preload_templates') |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 99 | name_suffix = datetime.now().strftime('%Y%m%d%H%M') |
| 100 | preloader = preload.Preload(vcpecommon) |
| 101 | preload_dict = preloader.preload_all_networks(network_template, name_suffix) |
| 102 | logger.debug('Initial preload dictionary:') |
| 103 | logger.debug(json.dumps(preload_dict, indent=4, sort_keys=True)) |
| 104 | if not preload_dict: |
| 105 | logger.error("Failed to preload networks.") |
Bartek Grzybowski | 68d93c2 | 2019-10-30 10:55:55 +0100 | [diff] [blame] | 106 | sys.exit(1) |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 107 | vcpecommon.save_preload_data(preload_dict) |
| 108 | |
Brian Freeman | 9b3d6ca | 2019-11-06 13:22:53 -0500 | [diff] [blame] | 109 | # preload all GRA-API networks |
| 110 | network_template_gra = vcpecommon.find_file('networkgra.', 'json', 'preload_templates') |
| 111 | preloader = preload.Preload(vcpecommon) |
| 112 | preload_dict_gra = preloader.preload_all_networks(network_template_gra, name_suffix) |
| 113 | logger.debug('Initial preload dictionary:') |
| 114 | logger.debug(json.dumps(preload_dict, indent=4, sort_keys=True)) |
| 115 | if not preload_dict_gra: |
| 116 | logger.error("Failed to preload networks.") |
| 117 | sys.exit(1) |
| 118 | vcpecommon.save_preload_data(preload_dict_gra) |
| 119 | |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 120 | # create multiple services based on the pre-determined order |
| 121 | svc_instance_uuid = {} |
Brian Freeman | 9b3d6ca | 2019-11-06 13:22:53 -0500 | [diff] [blame] | 122 | for keyword in ['infra', 'bng', 'gmux', 'brgemu']: |
| 123 | keyword_vnf=keyword + "_" |
| 124 | keyword_gra=keyword + "gra_" |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 125 | heatbridge = 'gmux' == keyword |
| 126 | csar_file = vcpecommon.find_file(keyword, 'csar', 'csar') |
Brian Freeman | 9b3d6ca | 2019-11-06 13:22:53 -0500 | [diff] [blame] | 127 | vnf_template_file = vcpecommon.find_file(keyword_vnf, 'json', 'preload_templates') |
| 128 | gra_template_file = vcpecommon.find_file(keyword_gra, 'json', 'preload_templates') |
| 129 | if vcpecommon.gra_api_flag: |
| 130 | svc_instance_uuid[keyword] = create_one_service(vcpecommon, csar_file, gra_template_file, preload_dict, |
| 131 | name_suffix, heatbridge) |
| 132 | else: |
| 133 | svc_instance_uuid[keyword] = create_one_service(vcpecommon, csar_file, vnf_template_file, preload_dict, |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 134 | name_suffix, heatbridge) |
| 135 | if not svc_instance_uuid[keyword]: |
Bartek Grzybowski | 68d93c2 | 2019-10-30 10:55:55 +0100 | [diff] [blame] | 136 | sys.exit(1) |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 137 | |
| 138 | vcpecommon.save_object(svc_instance_uuid, vcpecommon.svc_instance_uuid_file) |
Brian Freeman | 9b3d6ca | 2019-11-06 13:22:53 -0500 | [diff] [blame] | 139 | |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 140 | # Setting up SNIRO |
Brian Freeman | 9b3d6ca | 2019-11-06 13:22:53 -0500 | [diff] [blame] | 141 | config_sniro(vcpecommon, svc_instance_uuid['gmux'], svc_instance_uuid['brgemu']) |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 142 | |
| 143 | print('----------------------------------------------------------------------------------------------------') |
| 144 | print('Congratulations! The following have been completed correctly:') |
| 145 | print(' - Infrastructure Service Instantiation: ') |
| 146 | print(' * 4 VMs: DHCP, AAA, DNS, Web Server') |
| 147 | print(' * 2 Networks: CPE_PUBLIC, CPE_SIGNAL') |
| 148 | print(' - vBNG Service Instantiation: ') |
| 149 | print(' * 1 VM: vBNG') |
| 150 | print(' * 2 Networks: BRG_BNG, BNG_MUX') |
| 151 | print(' - vGMUX Service Instantiation: ') |
| 152 | print(' * 1 VM: vGMUX') |
| 153 | print(' * 1 Network: MUX_GW') |
| 154 | print(' - vBRG Service Instantiation: ') |
| 155 | print(' * 1 VM: vBRG') |
| 156 | print(' - Adding vGMUX vServer information to AAI.') |
| 157 | print(' - SNIRO Homing Emulator configuration.') |
| 158 | |
| 159 | |
| 160 | def deploy_custom_service(): |
| 161 | nodes = ['brg', 'mux'] |
| 162 | vcpecommon = VcpeCommon(nodes) |
| 163 | custom_service = vcpe_custom_service.CustomService(vcpecommon) |
| 164 | |
| 165 | # clean up |
Kang Xi | 0e0a1d6 | 2018-07-23 16:53:54 -0400 | [diff] [blame] | 166 | host_dic = {k: vcpecommon.hosts[k] for k in nodes} |
| 167 | if False: |
| 168 | if not vcpecommon.delete_vxlan_interfaces(host_dic): |
Bartek Grzybowski | 68d93c2 | 2019-10-30 10:55:55 +0100 | [diff] [blame] | 169 | sys.exit(1) |
Kang Xi | 0e0a1d6 | 2018-07-23 16:53:54 -0400 | [diff] [blame] | 170 | custom_service.del_all_vgw_stacks(vcpecommon.vgw_name_keyword) |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 171 | |
Kang Xi | 6c76239 | 2018-05-30 09:27:34 -0400 | [diff] [blame] | 172 | #custom_service.clean_up_sdnc() |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 173 | |
| 174 | # create new service |
| 175 | csar_file = vcpecommon.find_file('rescust', 'csar', 'csar') |
| 176 | vgw_template_file = vcpecommon.find_file('vgw', 'json', 'preload_templates') |
Brian Freeman | 81f6e9e | 2018-11-11 22:36:20 -0500 | [diff] [blame] | 177 | vgw_gra_template_file = vcpecommon.find_file('gwgra', 'json', 'preload_templates') |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 178 | preload_dict = vcpecommon.load_preload_data() |
Brian Freeman | 81f6e9e | 2018-11-11 22:36:20 -0500 | [diff] [blame] | 179 | custom_service.create_custom_service(csar_file, vgw_template_file, vgw_gra_template_file, preload_dict) |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 180 | |
| 181 | |
| 182 | def closed_loop(lossrate=0): |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 183 | nodes = ['brg', 'mux'] |
| 184 | logger = logging.getLogger('__name__') |
| 185 | vcpecommon = VcpeCommon(nodes) |
Bartek Grzybowski | dbb3ba1 | 2019-09-25 11:21:42 +0200 | [diff] [blame] | 186 | |
| 187 | logger.info('Setting up closed loop policy') |
| 188 | policy_template_file = vcpecommon.find_file('operational.vcpe', 'json', 'preload_templates') |
| 189 | vcpecommon.set_closed_loop_policy(policy_template_file) |
| 190 | |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 191 | logger.info('Cleaning up vGMUX data reporting settings') |
| 192 | vcpecommon.del_vgmux_ves_mode() |
| 193 | time.sleep(2) |
| 194 | vcpecommon.del_vgmux_ves_collector() |
| 195 | |
Yang Xu | 9f935b2 | 2018-11-22 10:56:52 -0500 | [diff] [blame] | 196 | logger.info('Starting vGMUX data reporting to DCAE') |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 197 | time.sleep(2) |
| 198 | vcpecommon.set_vgmux_ves_collector() |
| 199 | |
| 200 | logger.info('Setting vGMUX to report packet loss rate: %s', lossrate) |
| 201 | time.sleep(2) |
| 202 | vcpecommon.set_vgmux_packet_loss_rate(lossrate, vcpecommon.load_vgmux_vnf_name()) |
| 203 | if lossrate > 0: |
Yang Xu | 1b31a1d | 2019-06-26 01:50:15 -0400 | [diff] [blame] | 204 | print('Now please observe vGMUX being restarted') |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 205 | |
| 206 | |
| 207 | def init_so_sdnc(): |
| 208 | logger = logging.getLogger('__name__') |
| 209 | vcpecommon = VcpeCommon() |
Brian Freeman | 9b3d6ca | 2019-11-06 13:22:53 -0500 | [diff] [blame] | 210 | #config_sdnc_so.insert_sdnc_ip_pool(vcpecommon) |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 211 | config_sdnc_so.insert_customer_service_to_so(vcpecommon) |
Yang Xu | 63a0afd | 2018-11-20 16:01:01 -0500 | [diff] [blame] | 212 | #config_sdnc_so.insert_customer_service_to_sdnc(vcpecommon) |
Brian Freeman | 8076a87 | 2018-11-13 11:34:48 -0500 | [diff] [blame] | 213 | vgw_vfmod_name_index= 0 |
| 214 | vcpecommon.save_object(vgw_vfmod_name_index, vcpecommon.vgw_vfmod_name_index_file) |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 215 | |
Yang Xu | 0e319ef | 2019-04-30 14:28:07 -0400 | [diff] [blame] | 216 | |
| 217 | def init(): |
Yang Xu | c52ed6e | 2019-04-29 00:20:52 -0400 | [diff] [blame] | 218 | vcpecommon = VcpeCommon() |
Yang Xu | 0e319ef | 2019-04-30 14:28:07 -0400 | [diff] [blame] | 219 | init_sdc(vcpecommon) |
| 220 | download_vcpe_service_templates(vcpecommon) |
| 221 | |
| 222 | |
| 223 | def init_sdc(vcpecommon): |
Yang Xu | c52ed6e | 2019-04-29 00:20:52 -0400 | [diff] [blame] | 224 | sdc = sdcutils.SdcUtils(vcpecommon) |
Brian Freeman | e8aa3f0 | 2019-09-20 08:29:22 -0500 | [diff] [blame] | 225 | # default SDC creates BRG - remove this in frankfurt |
| 226 | #sdc.create_allotted_resource_subcategory('BRG') |
Yang Xu | 0e319ef | 2019-04-30 14:28:07 -0400 | [diff] [blame] | 227 | |
| 228 | |
| 229 | def download_vcpe_service_templates(vcpecommon): |
| 230 | sdc = sdcutils.SdcUtils(vcpecommon) |
| 231 | sdc.download_vcpe_service_template() |
| 232 | |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 233 | |
Kang Xi | 6c76239 | 2018-05-30 09:27:34 -0400 | [diff] [blame] | 234 | def tmp_sniro(): |
| 235 | logger = logging.getLogger(__name__) |
| 236 | |
| 237 | vcpecommon = VcpeCommon() |
| 238 | |
| 239 | svc_instance_uuid = vcpecommon.load_object(vcpecommon.svc_instance_uuid_file) |
| 240 | # Setting up SNIRO |
Brian Freeman | 9b3d6ca | 2019-11-06 13:22:53 -0500 | [diff] [blame] | 241 | config_sniro(vcpecommon, svc_instance_uuid['gmux'], svc_instance_uuid['brgemu']) |
Kang Xi | 6c76239 | 2018-05-30 09:27:34 -0400 | [diff] [blame] | 242 | |
Yang Xu | 0e319ef | 2019-04-30 14:28:07 -0400 | [diff] [blame] | 243 | |
Yang Xu | 64339a8 | 2018-12-30 05:32:21 +0000 | [diff] [blame] | 244 | def test(): |
| 245 | vcpecommon = VcpeCommon() |
Yang Xu | 65b84a4 | 2018-12-31 17:48:02 +0000 | [diff] [blame] | 246 | print("oom-k8s-04 public ip: %s" % (vcpecommon.get_vm_public_ip_by_nova('oom-k8s-04'))) |
Yang Xu | 64339a8 | 2018-12-30 05:32:21 +0000 | [diff] [blame] | 247 | |
Yang Xu | 0e319ef | 2019-04-30 14:28:07 -0400 | [diff] [blame] | 248 | |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 249 | if __name__ == '__main__': |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 250 | print('----------------------------------------------------------------------------------------------------') |
| 251 | print(' vcpe.py: Brief info about this program') |
| 252 | # print(' vcpe.py sdc: Onboard VNFs, design and distribute vCPE services (under development)') |
| 253 | print(' vcpe.py init: Add customer service data to SDNC and SO DBs.') |
| 254 | print(' vcpe.py infra: Deploy infrastructure, including DHCP, AAA, DNS, Web Server, vBNG, vGMUX, vBRG.') |
Brian Freeman | ec9fe0e | 2018-11-12 12:37:12 -0500 | [diff] [blame] | 255 | print(' vcpe.py brg: Deploy brg only (for testing after infra succeeds).') |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 256 | print(' vcpe.py customer: Deploy customer service, including vGW and VxLANs') |
Bartek Grzybowski | 304628b | 2019-10-17 10:44:39 +0200 | [diff] [blame] | 257 | print(' vcpe.py loop: Test closed loop control (packet loss set to 22)') |
| 258 | print(' vcpe.py noloss: Set vGMUX packet loss to 0') |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 259 | print('----------------------------------------------------------------------------------------------------') |
| 260 | |
| 261 | if len(sys.argv) != 2: |
| 262 | sys.exit() |
| 263 | |
| 264 | if sys.argv[1] == 'sdc': |
| 265 | print('Under development') |
| 266 | elif sys.argv[1] == 'init': |
Yang Xu | 0e319ef | 2019-04-30 14:28:07 -0400 | [diff] [blame] | 267 | init() |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 268 | init_so_sdnc() |
| 269 | elif sys.argv[1] == 'infra': |
Brian Freeman | 9b3d6ca | 2019-11-06 13:22:53 -0500 | [diff] [blame] | 270 | #if 'y' == raw_input('Ready to deploy infrastructure? y/n: ').lower(): |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 271 | deploy_infra() |
| 272 | elif sys.argv[1] == 'customer': |
| 273 | if 'y' == raw_input('Ready to deploy customer service? y/n: ').lower(): |
| 274 | deploy_custom_service() |
| 275 | elif sys.argv[1] == 'loop': |
| 276 | closed_loop(22) |
| 277 | elif sys.argv[1] == 'noloss': |
| 278 | closed_loop(0) |
| 279 | elif sys.argv[1] == 'brg': |
| 280 | deploy_brg_only() |
Yang Xu | 86c0e4a | 2018-12-02 13:10:41 -0500 | [diff] [blame] | 281 | elif sys.argv[1] == 'sniro': |
| 282 | tmp_sniro() |
Yang Xu | 64339a8 | 2018-12-30 05:32:21 +0000 | [diff] [blame] | 283 | elif sys.argv[1] == 'test': |
| 284 | test() |
Kang Xi | 11d278c | 2018-04-06 16:56:04 -0400 | [diff] [blame] | 285 | |