blob: 157cdff1a95b652bcac1e463091ce8a268e27885 [file] [log] [blame]
Mateusz Lose2ad0772020-02-27 21:41:54 +01001heat_template_version: queens
2
3parameters:
4
5 metadata:
6 type: json
7 default: {}
8 node_type:
9 type: string
10 key_name:
11 type: string
12 description: Name of keypair to assign to servers
13 image:
14 type: string
15 description: Name of image to use for servers
16 flavor:
17 type: string
18 description: Flavor to use for servers
19 accessible_network:
20 type: string
21 accessible_subnet_id:
22 type: string
23 private_floating_network:
24 type: string
25 private_floating_network_cidr:
26 type: string
27 private_floating_subnet_id:
28 type: string
29 private_floating_interface:
30 type: string
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020031 storage_backend_network_cidr:
32 type: string
Mateusz Lose2ad0772020-02-27 21:41:54 +010033 storage_backend_network:
34 type: string
35 storage_backend_subnet_id:
36 type: string
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020037 storage_backend_interface:
38 type: string
Mateusz Lose2ad0772020-02-27 21:41:54 +010039 storage_frontend_network:
40 type: string
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020041 storage_frontend_network_cidr:
42 type: string
Mateusz Lose2ad0772020-02-27 21:41:54 +010043 storage_frontend_subnet_id:
44 type: string
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020045 storage_frontend_interface:
46 type: string
Vasyl Saienko0fa6f192020-03-06 16:08:51 +020047 control_network_cidr:
Mateusz Lose2ad0772020-02-27 21:41:54 +010048 type: string
Vasyl Saienko36f2edf2020-05-14 10:44:52 +030049 ironic_baremetal_network:
50 type: string
51 ironic_baremetal_subnet_id:
52 type: string
Vasyl Saienko4c468192020-05-19 11:51:13 +030053 ironic_baremetal_network_cidr:
Vasyl Saienko36f2edf2020-05-14 10:44:52 +030054 type: string
Michael Polenchuk486cadf2020-08-24 16:25:51 +040055 ironic_baremetal_tunnel_cidr:
56 type: string
57 ironic_mt_enabled:
58 type: boolean
Anton Samoylovea0b23e2020-06-26 14:17:51 +040059 tungstenfabric_enabled:
60 type: boolean
Oleh Hryhorove7feab42020-11-11 18:00:29 +020061 tun_network:
Anton Samoylovea0b23e2020-06-26 14:17:51 +040062 type: string
Oleh Hryhorove7feab42020-11-11 18:00:29 +020063 tun_subnet_id:
Anton Samoylovea0b23e2020-06-26 14:17:51 +040064 type: string
Mateusz Lose2ad0772020-02-27 21:41:54 +010065 functions_override:
66 type: string
67 boot_timeout:
68 type: number
69 description: Boot timeout for instance
Vasyl Saienkof36f39c2020-03-10 00:21:42 +020070 default: 3600
Mateusz Lose2ad0772020-02-27 21:41:54 +010071 ucp_master_host:
72 type: string
73 default: ''
Vasyl Saienko84ee4fd2020-09-02 10:00:18 +030074 docker_ucp_image:
75 type: string
Stepan Rogov60bc3522020-12-16 17:43:25 +030076 docker_default_address_pool:
77 type: string
Mateusz Lose2ad0772020-02-27 21:41:54 +010078 public_net_id:
79 type: string
80 docker_ee_release:
81 type: string
82 docker_ee_url:
83 type: string
Vasyl Saienkof9ee1582020-03-02 16:53:41 +020084 hardware_metadata:
85 description: The content of lab metadata.
86 type: string
Oleh Hryhorov33e30e22020-03-12 11:51:40 +020087 user_data_config:
88 description: This is part of clout-config which denies to mount drive with label ephemeral0 to /mnt
89 type: string
90 default: |
91 #cloud-config
92 #
93 # Don't mount ephemeral0 to /mnt as it's by default
94 mounts:
95 - [ ephemeral0, null ]
Mykyta Karpin6a153c52020-11-03 15:21:38 +020096 huge_pages:
97 description: >
98 String formatted as '<Number of Gb for 1Gb huge pages>,<Number of Mb for 2Mb huge pages'
99 If number is equal to 0 alloacation of huge pages won't be configured.
100 default: '0,0'
101 type: string
Vasyl Saienko846c6342021-02-24 17:01:36 +0200102 frr_bgp_neighbors:
103 description: Comma separated list of IP of BGP neighbors
104 default: ''
105 type: string
Mateusz Lose2ad0772020-02-27 21:41:54 +0100106
107resources:
108
109 software_config:
110 type: OS::Heat::SoftwareConfig
111 properties:
112 group: ungrouped
113 config:
114 str_replace:
115 template: { get_file: ../scripts/instance_boot.sh }
116 params:
117 $node_type: { get_param: node_type }
118 $wait_condition_notify: { get_attr: [ wait_handle, curl_cli ] }
Mateusz Lose2ad0772020-02-27 21:41:54 +0100119 $docker_ee_url: { get_param: docker_ee_url }
120 $docker_ee_release: { get_param: docker_ee_release }
121 $ucp_master_host: { get_param: ucp_master_host }
Vasyl Saienko84ee4fd2020-09-02 10:00:18 +0300122 $docker_ucp_image: { get_param: docker_ucp_image }
Stepan Rogov60bc3522020-12-16 17:43:25 +0300123 $docker_default_address_pool: { get_param: docker_default_address_pool }
Mateusz Lose2ad0772020-02-27 21:41:54 +0100124 $node_metadata: { get_param: metadata }
Vasyl Saienko0fa6f192020-03-06 16:08:51 +0200125 $control_network_cidr: { get_param: control_network_cidr }
Mateusz Lose2ad0772020-02-27 21:41:54 +0100126 $private_floating_interface: { get_param: private_floating_interface }
127 $private_floating_interface_ip: { get_attr: [private_floating_server_port, fixed_ips, 0, ip_address] }
128 $private_floating_network_cidr: { get_param: private_floating_network_cidr }
129 $functions_override: { get_param: functions_override }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200130 $storage_frontend_interface: { get_param: storage_frontend_interface }
131 $storage_frontend_network_interface_ip: { get_attr: [storage_frontend_server_port, fixed_ips, 0, ip_address] }
132 $storage_frontend_network_cidr: { get_param: storage_frontend_network_cidr }
133 $storage_backend_interface: { get_param: storage_backend_interface }
134 $storage_backend_network_interface_ip: { get_attr: [storage_backend_server_port, fixed_ips, 0, ip_address] }
135 $storage_backend_network_cidr: { get_param: storage_backend_network_cidr }
Vasyl Saienko36f2edf2020-05-14 10:44:52 +0300136 $ironic_baremetal_interface_ip: { get_attr: [ironic_baremetal_server_port, fixed_ips, 0, ip_address] }
Vasyl Saienko4c468192020-05-19 11:51:13 +0300137 $ironic_baremetal_network_cidr: { get_param: ironic_baremetal_network_cidr }
Michael Polenchuk486cadf2020-08-24 16:25:51 +0400138 $ironic_baremetal_tunnel_cidr: { get_param: ironic_baremetal_tunnel_cidr }
Vasyl Saienko3dd0c272020-11-16 17:20:07 +0200139 $tunnel_interface_ip: { get_attr: [tun_server_port, fixed_ips, 0, ip_address] }
Michael Polenchuk486cadf2020-08-24 16:25:51 +0400140 $ironic_mt_enabled: { get_param: ironic_mt_enabled }
Mykyta Karpin6a153c52020-11-03 15:21:38 +0200141 $huge_pages: { get_param: huge_pages }
Anton Samoylovec019d52020-11-19 18:55:47 +0400142 $tungstenfabric_enabled: { get_param: tungstenfabric_enabled }
Vasyl Saienko846c6342021-02-24 17:01:36 +0200143 $frr_bgp_neighbors: { get_param: frr_bgp_neighbors }
Mateusz Lose2ad0772020-02-27 21:41:54 +0100144
Oleh Hryhorov6cd21902020-03-05 18:29:31 +0200145 inject_files:
146 type: "OS::Heat::CloudConfig"
147 properties:
148 cloud_config:
149 write_files:
150 - path: /usr/sbin/prepare-metadata.py
151 owner: "root:root"
152 permissions: "0755"
153 content: {get_file: ../scripts/prepare-metadata.py}
154 - path: /usr/share/metadata/lab-metadata.yaml
155 owner: "root:root"
156 permissions: "0644"
157 content: { get_param: hardware_metadata}
158
159 install_config_agent:
160 type: "OS::Heat::MultipartMime"
161 properties:
162 parts:
163 - config: {get_resource: software_config}
164 - config: {get_resource: inject_files}
Oleh Hryhorov33e30e22020-03-12 11:51:40 +0200165 - config: {get_param: user_data_config}
Oleh Hryhorov6cd21902020-03-05 18:29:31 +0200166
Mateusz Lose2ad0772020-02-27 21:41:54 +0100167 server:
168 type: OS::Nova::Server
169 properties:
170 image: { get_param: image }
171 flavor: { get_param: flavor }
172 key_name: { get_param: key_name }
173 availability_zone: nova
174 networks:
Oleh Hryhorove7feab42020-11-11 18:00:29 +0200175 - port: { get_resource: accessible_server_port }
176 - port: { get_resource: private_floating_server_port }
177 - port: { get_resource: storage_frontend_server_port }
178 - port: { get_resource: storage_backend_server_port }
179 - port: { get_resource: ironic_baremetal_server_port }
180 - port: { get_resource: tun_server_port }
Oleh Hryhorov6cd21902020-03-05 18:29:31 +0200181 user_data_format: SOFTWARE_CONFIG
182 user_data: { get_resource: install_config_agent}
Mateusz Lose2ad0772020-02-27 21:41:54 +0100183 metadata: { get_param: metadata }
184
185 accessible_server_port:
186 type: OS::Neutron::Port
187 properties:
188 network_id: { get_param: accessible_network }
189 port_security_enabled: false
190 fixed_ips:
191 - subnet: { get_param: accessible_subnet_id }
192
193 storage_backend_server_port:
194 type: OS::Neutron::Port
195 properties:
196 network_id: { get_param: storage_backend_network }
197 port_security_enabled: false
198 fixed_ips:
199 - subnet: { get_param: storage_backend_subnet_id }
200
201 storage_frontend_server_port:
202 type: OS::Neutron::Port
203 properties:
204 network_id: { get_param: storage_frontend_network }
205 port_security_enabled: false
206 fixed_ips:
207 - subnet: { get_param: storage_frontend_subnet_id }
208
209 private_floating_server_port:
210 type: OS::Neutron::Port
211 properties:
212 network_id: { get_param: private_floating_network }
213 port_security_enabled: false
214 fixed_ips:
215 - subnet: { get_param: private_floating_subnet_id }
216
217 server_floating_ip:
218 type: OS::Neutron::FloatingIP
219 properties:
220 floating_network_id: { get_param: public_net_id }
221 port_id: { get_resource: accessible_server_port }
222
Vasyl Saienko36f2edf2020-05-14 10:44:52 +0300223 ironic_baremetal_server_port:
224 type: OS::Neutron::Port
225 properties:
226 network_id: { get_param: ironic_baremetal_network }
227 port_security_enabled: false
228 fixed_ips:
229 - subnet: { get_param: ironic_baremetal_subnet_id }
230
Oleh Hryhorove7feab42020-11-11 18:00:29 +0200231 tun_server_port:
Anton Samoylovea0b23e2020-06-26 14:17:51 +0400232 type: OS::Neutron::Port
Anton Samoylovea0b23e2020-06-26 14:17:51 +0400233 properties:
Oleh Hryhorove7feab42020-11-11 18:00:29 +0200234 network_id: { get_param: tun_network }
Anton Samoylovea0b23e2020-06-26 14:17:51 +0400235 port_security_enabled: false
236 fixed_ips:
Oleh Hryhorove7feab42020-11-11 18:00:29 +0200237 - subnet: { get_param: tun_subnet_id }
Anton Samoylovea0b23e2020-06-26 14:17:51 +0400238
Mateusz Lose2ad0772020-02-27 21:41:54 +0100239 wait_handle:
240 type: OS::Heat::WaitConditionHandle
241 wait_condition:
242 type: OS::Heat::WaitCondition
243 properties:
244 handle: { get_resource: wait_handle }
245 timeout: { get_param: boot_timeout }
246
247outputs:
248 server_private_ip:
249 description: IP address of server in private network
250 value: { get_attr: [server, networks, { get_param: accessible_network}, 0]}
251 server_private_floating_ip:
252 description: IP address of server in private floating network
253 value: { get_attr: [private_floating_server_port, fixed_ips, 0, ip_address] }
Vasyl Saienko4e3f4632020-05-26 14:43:09 +0300254 server_ironic_baremetal_ip:
255 description: IP address of server in ironic baremetal network
256 value: { get_attr: [ironic_baremetal_server_port, fixed_ips, 0, ip_address] }
Anton Samoylovea0b23e2020-06-26 14:17:51 +0400257 server_tf_data_ip:
258 description: IP address of server in tf data network
Oleh Hryhorove7feab42020-11-11 18:00:29 +0200259 value: { get_attr: [tun_server_port, fixed_ips, 0, ip_address] }
Mateusz Lose2ad0772020-02-27 21:41:54 +0100260 server_public_ip:
261 description: Floating IP address of server in public network
262 value: { get_attr: [ server_floating_ip, floating_ip_address ] }
Vasyl Saienko846c6342021-02-24 17:01:36 +0200263 server_tun_ip:
264 description: IP address of server in tunnel network
265 value: { get_attr: [ tun_server_port, fixed_ips, 0, ip_address ] }
Vasyl Saienkof9ee1582020-03-02 16:53:41 +0200266 wc_data:
267 description: Metadata from instance
268 value: { get_attr: [wait_condition, data]}