diff options
author | andreasgeissler <andreas-geissler@telekom.de> | 2020-09-09 18:01:12 +0200 |
---|---|---|
committer | andreasgeissler <andreas-geissler@telekom.de> | 2020-09-10 17:49:24 +0200 |
commit | a5c39a3409a795fb0709b952e15ac2746364358b (patch) | |
tree | fb887c560ce1699543d54572279207830c92ef31 /src/onaptests/steps/onboard/vsp.py | |
parent | 80e8e99d9b33fc5929c253aba84d330ae68f01de (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 'src/onaptests/steps/onboard/vsp.py')
-rw-r--r-- | src/onaptests/steps/onboard/vsp.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/onaptests/steps/onboard/vsp.py b/src/onaptests/steps/onboard/vsp.py index 75055de..50f1dfc 100644 --- a/src/onaptests/steps/onboard/vsp.py +++ b/src/onaptests/steps/onboard/vsp.py @@ -36,6 +36,15 @@ class VspOnboardStep(BaseStep): class YamlTemplateVspOnboardStep(YamlTemplateBaseStep): """Vsp onboard using YAML template step.""" + def __init__(self, cleanup=False): + """Initialize step. + + Substeps: + - VendorOnboardStep. + """ + super().__init__(cleanup=cleanup) + self.add_step(VendorOnboardStep(cleanup=cleanup)) + @property def yaml_template(self) -> dict: """YAML template. |