[VVP] updating OS::Neutron::Port parameter tests
[vvp/validation-scripts.git] / ice_validator / tests / fixtures / test_fixed_ips_include_vm_type_network_role / fail / fail.yaml
1 # -*- coding: utf8 -*-
2 # ============LICENSE_START=======================================================
3 # org.onap.vvp/validation-scripts
4 # ===================================================================
5 # Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6 # ===================================================================
7 #
8 # Unless otherwise specified, all software contained herein is licensed
9 # under the Apache License, Version 2.0 (the "License");
10 # you may not use this software except in compliance with the License.
11 # You may obtain a copy of the License at
12 #
13 #             http://www.apache.org/licenses/LICENSE-2.0
14 #
15 # Unless required by applicable law or agreed to in writing, software
16 # distributed under the License is distributed on an "AS IS" BASIS,
17 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 # See the License for the specific language governing permissions and
19 # limitations under the License.
20 #
21 #
22 #
23 # Unless otherwise specified, all documentation contained herein is licensed
24 # under the Creative Commons License, Attribution 4.0 Intl. (the "License");
25 # you may not use this documentation except in compliance with the License.
26 # You may obtain a copy of the License at
27 #
28 #             https://creativecommons.org/licenses/by/4.0/
29 #
30 # Unless required by applicable law or agreed to in writing, documentation
31 # distributed under the License is distributed on an "AS IS" BASIS,
32 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33 # See the License for the specific language governing permissions and
34 # limitations under the License.
35 #
36 # ============LICENSE_END============================================
37 #
38 #
39 ---
40 heat_template_version: 2015-04-30
41
42 description: Heat template description
43
44 parameters:
45
46   vnf_id:
47     type: string
48     description: Unique ID for this VNF instance
49
50   vf_module_id:
51     type: string
52     description: Unique ID for this VF module
53
54   vnf_name:
55     type: string
56     description: Unique name for this VNF instance
57
58   db_names:
59     type: comma_delimited_list
60     description: Names attribute for the VMs
61
62   lb1_names:
63     type: comma_delimited_list
64     description: Names attribute for the VMs
65
66   lb1_flavor_name:
67     type: string
68     description: flavor to be used to create this vm must be one of the following flavors
69
70   db_flavor_name:
71     type: string
72     description: flavor to be used to create this vm must be one of the following flavors
73
74   availability_zone_0:
75     type: string
76     description: availability zone to be used
77
78   exnet_net_name:
79     type: string
80     description: network name for the external network extnet
81
82   exnet_net_id:
83     type: string
84     description: network id for the external network extnet
85
86   int_intranet_net_id:
87     type: string
88     description: network id for the internal network intranet 
89
90   db_int_intaranet_ip_0:
91     type: string
92     description: db_int_intaranet_ip_0 
93
94   db_int_intranet_v6_ip_0:
95     type: string
96     description: db_int_intranet_v6_ip_0 
97
98   db_int_intranet_ips:
99     type: string
100     description: db_int_intranet_ips 
101
102   db_int_intranet_v6_ips:
103     type: string
104     description: db_int_intranet_v6_ips 
105
106   my_ip:
107     type: string
108     description: my_ip 
109
110   lb_extnet_ip_1:
111     type: string
112     description: lb_extnet_ip_1 
113
114   lb_extnet_v6_ip_0:
115     type: string
116     description: lb_extnet_v6_ip_0
117
118   lb_extnet_ips:
119     type: string
120     description: lb_extnet_ips 
121
122   lb_extnet_v6_ips:
123     type: string
124     description: lb_extnet_v6_ips 
125
126 resources:
127
128   lb_server_0:
129     type: OS::Nova::Server
130     properties:
131       availability_zone: { get_param: availability_zone_0 }
132       name: { get_param: [lb1_names, 0]  }
133       flavor: { get_param: lb1_flavor_name}
134       networks:
135         - port: { get_resource: lb_0_extnet_port_0 }
136       metadata:
137         vnf_name: { get_param: vnf_name }
138         vnf_id: { get_param: vnf_id }
139         vf_module_id: { get_param: vf_module_id }
140
141   db_server_0:
142     type: OS::Nova::Server
143     properties:
144       availability_zone: { get_param: availability_zone_0 }
145       name: { get_param: [db_names, 1]  }
146       flavor: { get_param: db_flavor_name}
147       networks:
148         - port: { get_resource: db_0_int_intranet_port_0 }
149       metadata:
150         vnf_name: { get_param: vnf_name }
151         vnf_id: { get_param: vnf_id }
152         vf_module_id: { get_param: vf_module_id }
153
154   db_0_int_intranet_port_0:
155         type: OS::Neutron::Port
156         properties:
157           network: { get_param: int_intranet_net_id }
158           fixed_ips:
159             - ip_address: { get_param: db_int_intaranet_ip_0 }
160             - ip_address: { get_param: db_int_intranet_v6_ip_0 }
161
162   lb_0_extnet_port_0:
163         type: OS::Neutron::Port
164         properties:
165           network: { get_param: extnet_net_name }
166           fixed_ips:
167             - ip_address: { get_param: my_ip }
168             - ip_address: { get_param: lb_extnet_v6_ip_0 }