aboutsummaryrefslogtreecommitdiffstats
path: root/run_basicvm_multicloud_yaml.py
diff options
context:
space:
mode:
authorandreasgeissler <andreas-geissler@telekom.de>2020-09-09 18:01:12 +0200
committerandreasgeissler <andreas-geissler@telekom.de>2020-09-10 17:49:24 +0200
commita5c39a3409a795fb0709b952e15ac2746364358b (patch)
treefb887c560ce1699543d54572279207830c92ef31 /run_basicvm_multicloud_yaml.py
parent80e8e99d9b33fc5929c253aba84d330ae68f01de (diff)
Updated yaml-based instantiation and MultiCloud registry
Correction for linter and updated run script Issue-ID: TEST-256 Signed-off-by: andreasgeissler <andreas-geissler@telekom.de> Change-Id: Ia1f6f41f8fc6ed74c836ea7aa987f10487f377a6
Diffstat (limited to 'run_basicvm_multicloud_yaml.py')
-rw-r--r--run_basicvm_multicloud_yaml.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/run_basicvm_multicloud_yaml.py b/run_basicvm_multicloud_yaml.py
index 22bdb25..03246cc 100644
--- a/run_basicvm_multicloud_yaml.py
+++ b/run_basicvm_multicloud_yaml.py
@@ -1,6 +1,6 @@
import logging.config
from onapsdk.configuration import settings
-from onaptests.steps.instantiate.service_ala_carte import YamlTemplateServiceAlaCarteInstantiateStep
+from onaptests.steps.instantiate.vf_module_ala_carte import YamlTemplateVfModuleAlaCarteInstantiateStep
@@ -9,6 +9,5 @@ if __name__ == "__main__":
# Correction requested in onapsdk to avoid having this duplicate code
logging.config.dictConfig(settings.LOG_CONFIG)
- service_inst = YamlTemplateServiceAlaCarteInstantiateStep()
- #service_inst = ServiceAlaCarteInstantiateStep()
- service_inst.execute()
+ basic_vm_instantiate = YamlTemplateVfModuleAlaCarteInstantiateStep()
+ basic_vm_instantiate.execute()