aboutsummaryrefslogtreecommitdiffstats
path: root/test/hpa_automation/tosca/hpa_automation.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/hpa_automation/tosca/hpa_automation.py')
-rwxr-xr-xtest/hpa_automation/tosca/hpa_automation.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/hpa_automation/tosca/hpa_automation.py b/test/hpa_automation/tosca/hpa_automation.py
index 08966d9a5..68f848763 100755
--- a/test/hpa_automation/tosca/hpa_automation.py
+++ b/test/hpa_automation/tosca/hpa_automation.py
@@ -373,13 +373,14 @@ def add_policies(parameters):
os.system("oclip policy-push-outdated -m {} -u {} -p {} -x {} -b {} -c {}".format(parameters["policy_url"], \
parameters["policy_username"], parameters["policy_password"], policy_name, parameters["policy_config_type"],\
parameters["policy_pdp_group"]))
-
+
def onboard_vnf(parameters):
vnfs = parameters["vnfs"]
vnf_onboard_outputs = {}
for key, value in vnfs.items():
- vnf_onboard_string = 'oclip vfc-catalog-onboard-vnf -c {}'.format(value.get("csar-id"))
+ vnf_onboard_string = 'oclip vfc-catalog-onboard-vnf -m {} -c {}'\
+ .format(value.get("url"), value.get("csar-id"))
vnf_onboard_outputs[key] = (os.popen(vnf_onboard_string)).read()
return vnf_onboard_outputs