[VVP] updating ports.py to check str_replace params
[vvp/validation-scripts.git] / ice_validator / tests / fixtures / test_allowed_address_pairs_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   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_intaranet_floating_ip:
91     type: string
92     description: db_int_intaranet_ip_0
93
94   lb_extanet_floating_ip:
95     type: string
96     description: lb_extanet_floating_ip
97
98   cidr:
99     type: string
100     description: naslfnsakl
101
102   badparameter:
103     type: string
104     description: naslfnsakl
105
106   TESTDB_int_priav_floating_ip:
107    type: string
108    description: asnfjl
109
110   TESTDB_priav_floating_ip:
111    type: string
112    description: asnfjl
113
114 resources:
115
116   lb_server_0:
117     type: OS::Nova::Server
118     properties:
119       availability_zone: { get_param: availability_zone_0 }
120       name: { get_param: [lb_names, 0]  }
121       flavor: { get_param: lb_flavor_name}
122       networks:
123         - port: { get_resource: db_0_int_intranet_port_0 }
124         - port: { get_resource: lb_0_extnet_port_0 }
125       metadata:
126         vnf_name: { get_param: vnf_name }
127         vnf_id: { get_param: vnf_id }
128         vf_module_id: { get_param: vf_module_id }
129
130   db_server_0:
131     type: OS::Nova::Server
132     properties:
133       availability_zone: { get_param: availability_zone_0 }
134       name: { get_param: [db_names, 1]  }
135       flavor: { get_param: db_flavor_name}
136       networks:
137         - port: { get_resource: db_0_int_intranet_0_port }
138       metadata:
139         vnf_name: { get_param: vnf_name }
140         vnf_id: { get_param: vnf_id }
141         vf_module_id: { get_param: vf_module_id }
142
143   db_0_int_intranet_port_0:
144         type: OS::Neutron::Port
145         properties:
146           network: { get_param: int_intranet_net_id }
147           allowed_address_pairs:
148             - ip_address: { get_param: db_int_intaranet_floating_ip }
149
150   lb_0_extnet_port_0:
151         type: OS::Neutron::Port
152         properties:
153           network: { get_param: extnet_net_name }
154           allowed_address_pairs:
155             - ip_address: { get_param: lb_extanet_floating_ip }
156
157   lb_0_extnet_port_0:
158         type: OS::Neutron::Port
159         properties:
160           network: { get_param: extnet_net_name }
161           allowed_address_pairs:
162             - ip_address:
163                 str_replace:
164                   template: $IPADDR$CIDR
165                   params:
166                     $IPADDR: { get_param: lb_extanet_floating_ip }
167                     $CIDR: { get_param: cidr}
168
169   TESTDB_0_int_private_vmi_0:
170     type: OS::ContrailV2::VirtualMachineInterface
171     properties:
172       virtual_machine_interface_properties:
173         virtual_machine_interface_properties_service_interface_type: {
174           "priv_interface_type" 
175         }
176       virtual_network_refs:
177         - get_param: priv_net_fqdn
178       virtual_machine_interface_allowed_address_pairs:
179         {
180           virtual_machine_interface_allowed_address_pairs_allowed_address_pair:
181             [{
182               virtual_machine_interface_allowed_address_pairs_allowed_address_pair_ip:
183                 {
184                   virtual_machine_interface_allowed_address_pairs_allowed_address_pair_ip_ip_prefix: { get_param: TESTDB_int_priav_floating_ip },
185                   virtual_machine_interface_allowed_address_pairs_allowed_address_pair_ip_ip_prefix_len: "dsafasdF",
186                 },
187               virtual_machine_interface_allowed_address_pairs_allowed_address_pair_mac: "sdnfjkas",
188               virtual_machine_interface_allowed_address_pairs_allowed_address_pair_address_mode: "sadfnjasdfknj",
189             }],
190         }
191
192
193   TESTDB_0_private_vmi_0:
194     type: OS::ContrailV2::VirtualMachineInterface
195     properties:
196       virtual_machine_interface_properties:
197         virtual_machine_interface_properties_service_interface_type: {
198           "priv_interface_type" 
199         }
200       virtual_network_refs:
201         - get_param: priv_net_fqdn
202       virtual_machine_interface_allowed_address_pairs:
203         {
204           virtual_machine_interface_allowed_address_pairs_allowed_address_pair:
205             [{
206               virtual_machine_interface_allowed_address_pairs_allowed_address_pair_ip:
207                 {
208                   virtual_machine_interface_allowed_address_pairs_allowed_address_pair_ip_ip_prefix: { get_param: TESTDB_priav_floating_ip },
209                   virtual_machine_interface_allowed_address_pairs_allowed_address_pair_ip_ip_prefix_len: "dsafasdF",
210                 },
211               virtual_machine_interface_allowed_address_pairs_allowed_address_pair_mac: "sdnfjkas",
212               virtual_machine_interface_allowed_address_pairs_allowed_address_pair_address_mode: "sadfnjasdfknj",
213             }],
214         }
215