Did you send in the network preload request to SDNC ? https://gerrit.onap.org/r/gitweb?p=integration.git;a=blob;f=test/vcpe/preload.py;h=f4aafbe8eb61f76cbd1dde43b363f346204a629f;hb=refs/heads/master
https://gerrit.onap.org/r/gitweb?p=integration.git;a=blob;f=test/vcpe/preload_templates/template.network.json;h=2acb9e363815847480794d6d7d53a1f1ae7a5724;hb=refs/heads/master 83 def preload_network(self, template_file, network_role, subnet_start_ip, subnet_gateway, common_dict, name_suffix): 84 """ 85 :param template_file: 86 :param network_role: cpe_signal, cpe_public, brg_bng, bng_mux, mux_gw 87 :param subnet_start_ip: 88 :param subnet_gateway: 89 :param name_suffix: e.g. '201711201311' 90 :return: 91 """ 92 network_name = '_'.join([self.vcpecommon.instance_name_prefix['network'], network_role.lower(), name_suffix]) 93 subnet_name = self.vcpecommon.network_name_to_subnet_name(network_name) 94 common_dict['${' + network_role+'_net}'] = network_name 95 common_dict['${' + network_role+'_subnet}'] = subnet_name 96 replace_dict = {'${network_role}': network_role, 97 '${service_type}': 'vCPE', 98 '${network_type}': 'Generic NeutronNet', 99 '${network_name}': network_name, 100 '${subnet_start_ip}': subnet_start_ip, 101 '${subnet_gateway}': subnet_gateway 102 } 103 self.logger.info('Preloading network ' + network_role) 104 return self.preload(template_file, replace_dict, self.vcpecommon.sdnc_preload_network_url) From: [email protected] <[email protected]> On Behalf Of Velugubantla Praveen Sent: Monday, August 05, 2019 5:33 AM To: [email protected] Cc: Narayanasetty Sowmya <[email protected]> Subject: [ONAP-DISCUSS] [SDNC] [SO] - Trying to create a new SERVICE with 2VNF's & a 1-Network Hi Team, By taking the VCPE usecase services as a blueprint we are trying to instantiate a new service with 2 VNF's & a network between them. After designing the service when we are trying to deploy with VID portal, we are getting the Received error from SDN-C: network-name not found from preload-data. So then, we tried with integration project(vcpe scritps as a reference) to preload the network data into SDNC as like the remaining networks in VCPE . After that we tried to instantiate the service from those scripts also. Then also we are getting the same error. I am attaching the BPMN logs of that service(PFA). In general, what's the workflow to create any network in ONAP. Please correct me if i am wrong Any help is highly appreciated. Regards, PRAVEEN V Engineer L&T TECHNOLOGY SERVICES LIMITED L3 Building, Manyata Embassy Business Park, Nagawara Hobli, Bengaluru-560045 Tel : +91 9154111420 L&T Technology Services Ltd www.LTTS.com<https://urldefense.proofpoint.com/v2/url?u=http-3A__www.LTTS.com&d=DwQFAw&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=JodhLAdOmInLJp_A_z_CA5hxmIHyAn9Wls0Xtw8F8FM&s=epoMGdcqIsGD3SqtKsyCF8dfy2GTSMaHyiyeMdqEPdk&e=> This Email may contain confidential or privileged information for the intended recipient (s). If you are not the intended recipient, please do not use or disseminate the information, notify the sender and delete it from your system. -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#18430): https://lists.onap.org/g/onap-discuss/message/18430 Mute This Topic: https://lists.onap.org/mt/32723748/21656 Group Owner: [email protected] Unsubscribe: https://lists.onap.org/g/onap-discuss/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
