blob: c93004643f5f57b779ea79d6ad5cfd123bdf1f0c (
plain)
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
|
##############################################################################
# Copyright 2018 EuropeanSoftwareMarketingLtd.
# ===================================================================
# Licensed under the ApacheLicense, Version2.0 (the"License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
#
# software distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and limitations under
# the License
##############################################################################
---
schema: "vnftest:task:0.1"
description: >
Vnftest TC003 config file;
Delete VF module
{% set service_instance_id = service_instance_id or '\"\u007Bservice_instance_id\u007D\"' %}
{% set vnf_instance_id = vnf_instance_id or '\"\u007Bvnf_instance_id\u007D\"' %}
{% set vf_module_instance_id = vf_module_instance_id or '\"\u007Bvf_module_instance_id\u007D\"' %}
{% set service_model_customization_id = service_model_customization_id or '\"\u007Bservice_model_customization_id\u007D\"' %}
{% set vf_modules = vf_modules or {} %}
{% set vf_modules_list = vf_modules_list or {}%}
{% set tenant_id = tenant_id or none %}
steps:
{% for vf_module_definition in vf_modules %}
{% set vf_module = vf_modules_list[vf_module_definition.module_name] %}
-
type: RestCall
options:
file: "vnftest/onap/lifecycle/delete_vf_module.yaml"
input:
-
parameter_name: "service_instance_id"
value: {{service_instance_id}}
-
parameter_name: "vnf_instance_id"
value: {{vnf_instance_id}}
-
parameter_name: "vf_module_instance_id"
value: {{vf_module_instance_id}}
-
parameter_name: "module_model_invariant_id"
value: {{vf_module.invariantUUID}}
-
parameter_name: "module_model_version_id"
value: {{vf_module.groupUUID}}
-
parameter_name: "vnf_type"
value: {{vf_module.name}}
-
parameter_name: "module_model_version"
value: {{vf_module.version}}
-
parameter_name: "service_model_customization_id"
value: {{service_model_customization_id}}
-
parameter_name: "tenant_id"
value: {{tenant_id}}
output:
-
parameter_name: "request_id"
value: "[requestReferences][requestId]"
runner:
type: Iteration
run_step: "setup,run"
-
type: RestCall
options:
file: "vnftest/onap/lifecycle/monitor_request.yaml"
input:
-
parameter_name: "request_id"
value: "{request_id}"
output:
-
parameter_name: "request_state"
value: "[request][requestStatus][requestState]"
sla:
action: assert
value: "{request_state}"
equals: "COMPLETE"
retries: 15
interval: 5
{% endfor %}
runner:
type: Iteration
run_step: "setup,run"
context:
type: CSAR
|