1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
from pathlib import Path
import sys
import time
from onapsdk.configuration import settings
from onapsdk.sdc.vf import Vf
from onapsdk.sdc.vsp import Vsp
from ..base import BaseStep, YamlTemplateBaseStep
from .vsp import VspOnboardStep, YamlTemplateVspOnboardStep
class VfOnboardStep(BaseStep):
"""Vf onboard step."""
def __init__(self, cleanup=False):
"""Initialize step.
Substeps:
- VspOnboardStep.
"""
super().__init__(cleanup=cleanup)
self.add_step(VspOnboardStep(cleanup=cleanup))
@property
def description(self) -> str:
"""Step description."""
return "Onboard vf in SDC."
@property
def component(self) -> str:
"""Component name."""
return "SDC"
@BaseStep.store_state
def execute(self):
"""Onboard Vf.
Use settings values:
- VSP_NAME,
- VF_NAME.
"""
super().execute()
vsp: Vsp = Vsp(name=settings.VSP_NAME)
vf: Vf = Vf(name=settings.VF_NAME, vsp=vsp)
if not vf.created():
vf.onboard()
class YamlTemplateVfOnboardStep(YamlTemplateBaseStep):
"""Vf onboard using YAML template step."""
def __init__(self, cleanup=False) -> None:
"""Initialize step.
Substeps:
- YamlTemplateVspOnboardStep.
"""
super().__init__(cleanup=cleanup)
self.add_step(YamlTemplateVspOnboardStep(cleanup=cleanup))
@property
def description(self) -> str:
"""Step description."""
return "Onboard vf described in YAML file in SDC."
@property
def component(self) -> str:
"""Component name."""
return "SDC"
@property
def yaml_template(self) -> dict:
"""YAML template.
Get YAML template from parent using it's name.
Returns:
dict: YAML template
"""
return self.parent.yaml_template[self.parent.service_name]
@YamlTemplateBaseStep.store_state
def execute(self):
"""Onboard Vfs from YAML template."""
super().execute()
if "vnfs" in self.yaml_template:
for vnf in self.yaml_template["vnfs"]:
vsp: Vsp = Vsp(name=f"{vnf['vnf_name']}_VSP")
vf: Vf = Vf(name=vnf['vnf_name'], vsp=vsp)
if not vf.created():
if all([x in vnf for x in ["vnf_artifact_type",
"vnf_artifact_name",
"vnf_artifact_label",
"vnf_artifact_file_path"]]):
vf.create()
artifact_file_path: Path = Path(vnf["vnf_artifact_file_path"])
if not artifact_file_path.exists():
artifact_file_path = Path(sys.path[-1], artifact_file_path)
vf.add_deployment_artifact(
artifact_type=vnf["vnf_artifact_type"],
artifact_name=vnf["vnf_artifact_name"],
artifact_label=vnf["vnf_artifact_label"],
artifact=str(artifact_file_path)
)
time.sleep(10)
vf.onboard()
|