58444b39ee7f7e544ff2a51319f205dbd91c5e36
[vvp/validation-scripts.git] / ice_validator / tests / fixtures / test_allowed_address_pairs_include_vm_type_network_role / pass / neutron / valid_template.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   lb_names:
63     type: comma_delimited_list
64     description: Names attribute for the VMs
65
66   lb_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_intranet_ip_0:
91     type: string
92     description: db_int_intranet_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: comma_delimited_list
100     description: db_int_intranet_ips
101
102   db_int_intranet_v6_ips:
103     type: comma_delimited_list
104     description: db_int_intranet_v6_ips
105
106   db_int_intranet_floating_ip:
107     type: string
108     description: db_int_intranet_floating_ip
109
110   db_int_intranet_floating_v6_ip:
111     type: string
112     description: db_int_intranet_floating_v6_ip
113
114   lb_extnet_ip_0:
115     type: string
116     description: lb_extnet_ip_0
117
118   lb_extnet_v6_ip_0:
119     type: string
120     description: lb_extnet_v6_ip_0
121
122   lb_extnet_ips:
123     type: comma_delimited_list
124     description: lb_extnet_ips
125
126   lb_extnet_v6_ips:
127     type: comma_delimited_list
128     description: lb_extnet_v6_ips
129
130   lb_extnet_floating_ip:
131     type: string
132     description: lb_extnet_floating_ip
133
134   lb_extnet_floating_v6_ip:
135     type: string
136     description: lb_extnet_floating_v6_ip
137
138 resources:
139
140   lb_server_0:
141     type: OS::Nova::Server
142     properties:
143       availability_zone: { get_param: availability_zone_0 }
144       name: { get_param: [lb_names, 0]  }
145       flavor: { get_param: lb_flavor_name}
146       networks:
147         - port: { get_resource: lb_0_extnet_0_port }
148         - port: { get_resource: lb_1_extnet_0_port }
149         - port: { get_resource: lb_2_extnet_0_port }
150         - port: { get_resource: lb_3_extnet_0_port }
151         - port: { get_resource: lb_4_extnet_0_port }
152         - port: { get_resource: lb_5_extnet_0_port }  
153       metadata:
154         vnf_name: { get_param: vnf_name }
155         vnf_id: { get_param: vnf_id }
156         vf_module_id: { get_param: vf_module_id }
157
158   db_server_0:
159     type: OS::Nova::Server
160     properties:
161       availability_zone: { get_param: availability_zone_0 }
162       name: { get_param: [db_names, 1]  }
163       flavor: { get_param: db_flavor_name}
164       networks:
165         - port: { get_resource: db_0_int_intranet_0_port }
166         - port: { get_resource: db_1_int_intranet_0_port }
167         - port: { get_resource: db_2_int_intranet_0_port }
168         - port: { get_resource: db_3_int_intranet_0_port }
169         - port: { get_resource: db_4_int_intranet_0_port }
170         - port: { get_resource: db_5_int_intranet_0_port }
171       metadata:
172         vnf_name: { get_param: vnf_name }
173         vnf_id: { get_param: vnf_id }
174         vf_module_id: { get_param: vf_module_id }
175
176   db_0_int_intranet_0_port:
177         type: OS::Neutron::Port
178         properties:
179           network: { get_param: int_intranet_net_id }
180           allowed_address_pairs:
181             - ip_address: { get_param: db_int_intranet_ip_0 }
182
183   db_1_int_intranet_0_port:
184         type: OS::Neutron::Port
185         properties:
186           network: { get_param: int_intranet_net_id }
187           allowed_address_pairs:
188             - ip_address: { get_param: db_int_intranet_v6_ip_0 }
189
190   db_2_int_intranet_0_port:
191         type: OS::Neutron::Port
192         properties:
193           network: { get_param: int_intranet_net_id }
194           allowed_address_pairs:
195             - ip_address: { get_param: [db_int_intranet_ips, 0] }
196
197   db_3_int_intranet_0_port:
198         type: OS::Neutron::Port
199         properties:
200           network: { get_param: int_intranet_net_id }
201           allowed_address_pairs:
202             - ip_address: { get_param: [db_int_intranet_v6_ips, 0] }
203
204   db_4_int_intranet_0_port:
205         type: OS::Neutron::Port
206         properties:
207           network: { get_param: int_intranet_net_id }
208           allowed_address_pairs:
209             - ip_address: { get_param: db_int_intranet_floating_ip }
210
211   db_5_int_intranet_0_port:
212         type: OS::Neutron::Port
213         properties:
214           network: { get_param: int_intranet_net_id }
215           allowed_address_pairs:
216             - ip_address: { get_param: db_int_intranet_floating_v6_ip }
217
218   lb_0_extnet_0_port:
219         type: OS::Neutron::Port
220         properties:
221           network: { get_param: extnet_net_name }
222           allowed_address_pairs:
223             - ip_address: { get_param: lb_extnet_ip_0 }
224
225   lb_1_extnet_0_port:
226         type: OS::Neutron::Port
227         properties:
228           network: { get_param: extnet_net_id }
229           allowed_address_pairs:
230             - ip_address: { get_param: lb_extnet_v6_ip_0 }
231
232   lb_2_extnet_0_port:
233         type: OS::Neutron::Port
234         properties:
235           network: { get_param: extnet_net_name }
236           allowed_address_pairs:
237             - ip_address: { get_param: [lb_extnet_ips, 0] }
238
239   lb_3_extnet_0_port:
240         type: OS::Neutron::Port
241         properties:
242           network: { get_param: extnet_net_id }
243           allowed_address_pairs:
244             - ip_address: { get_param: [lb_extnet_v6_ips, 0] }
245
246   lb_4_extnet_0_port:
247         type: OS::Neutron::Port
248         properties:
249           network: { get_param: extnet_net_name }
250           allowed_address_pairs:
251             - ip_address: { get_param: lb_extnet_floating_ip }
252
253   lb_5_extnet_0_port:
254         type: OS::Neutron::Port
255         properties:
256           network: { get_param: extnet_net_id }
257           allowed_address_pairs:
258             - ip_address: { get_param: lb_extnet_floating_v6_ip }