diff options
author | mrichomme <morgan.richomme@orange.com> | 2020-09-14 17:29:57 +0200 |
---|---|---|
committer | mrichomme <morgan.richomme@orange.com> | 2020-09-14 17:29:57 +0200 |
commit | a85a306fb5ee8259b09c392c03ac499c828b5597 (patch) | |
tree | 946f8d85ae0bfc62c114f2eb1168a513e1557226 /run_basicvm_nomulticloud.py | |
parent | a5c39a3409a795fb0709b952e15ac2746364358b (diff) |
Consider SERVICE_NAME from the yaml file
avoid duplication in yaml and settings
if not defined in Yaml, possibility to set it up manually
Issue-ID: TEST-240
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Change-Id: Ib005eaea78e109b6917f2a09ae04ce0c2c511660
Diffstat (limited to 'run_basicvm_nomulticloud.py')
-rw-r--r-- | run_basicvm_nomulticloud.py | 27 |
1 files changed, 8 insertions, 19 deletions
diff --git a/run_basicvm_nomulticloud.py b/run_basicvm_nomulticloud.py index e7f63c0..03246cc 100644 --- a/run_basicvm_nomulticloud.py +++ b/run_basicvm_nomulticloud.py @@ -1,24 +1,13 @@ -# import logging +import logging.config +from onapsdk.configuration import settings +from onaptests.steps.instantiate.vf_module_ala_carte import YamlTemplateVfModuleAlaCarteInstantiateStep -from onaptests.steps.instantiate.module import ModuleInstantiateStep - -# from onapsdk.sdc.vendor import Vendor - - -# Configure logging -# logger = logging.getLogger("") -# logger.setLevel(logging.INFO) -# fh = logging.StreamHandler() -# fh_formatter = logging.Formatter( -# "%(asctime)s %(levelname)s %(name)s %(lineno)d:%(filename)s(%(process)d) - %(message)s" -# ) -# fh.setFormatter(fh_formatter) -# logger.addHandler(fh) -# Vendor.set_proxy({ 'http': 'socks5h://127.0.0.1:8083', 'https': 'socks5h://127.0.0.1:8083'}) if __name__ == "__main__": - basic_vm_instantiate = ModuleInstantiateStep() + # logging configuration for onapsdk, it is not requested for onaptests + # Correction requested in onapsdk to avoid having this duplicate code + logging.config.dictConfig(settings.LOG_CONFIG) + + basic_vm_instantiate = YamlTemplateVfModuleAlaCarteInstantiateStep() basic_vm_instantiate.execute() - # service_onboard = YamlTemplateServiceOnboardStep() - # service_onboard.execute() |