blob: f2f4cd23edc4db845a6c93afd496bc8378d12bba [file] [log] [blame]
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +02001heat_template_version: queens
2
3parameters:
4
5 metadata:
6 type: json
7 default: {}
8 node_type:
9 type: string
Vasyl Saienko8d34ad02021-07-26 11:55:23 +030010 kubernetes_installer:
11 type: string
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020012 key_name:
13 type: string
14 description: Name of keypair to assign to servers
15 image:
16 type: string
17 description: Name of image to use for servers
18 flavor:
19 type: string
20 description: Flavor to use for servers
21 accessible_network:
22 type: string
23 accessible_subnet_id:
24 type: string
25 private_floating_network:
26 type: string
27 private_floating_network_cidr:
28 type: string
29 private_floating_subnet_id:
30 type: string
31 private_floating_interface:
32 type: string
33 storage_backend_network_cidr:
34 type: string
35 storage_backend_network:
36 type: string
37 storage_backend_subnet_id:
38 type: string
39 storage_backend_interface:
40 type: string
41 storage_frontend_network:
42 type: string
43 storage_frontend_network_cidr:
44 type: string
45 storage_frontend_subnet_id:
46 type: string
47 storage_frontend_interface:
48 type: string
Vasyl Saienko0fa6f192020-03-06 16:08:51 +020049 control_network_cidr:
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020050 type: string
Vasyl Saienko36f2edf2020-05-14 10:44:52 +030051 ironic_baremetal_network:
52 type: string
53 ironic_baremetal_subnet_id:
54 type: string
Vasyl Saienko4c468192020-05-19 11:51:13 +030055 ironic_baremetal_network_cidr:
Vasyl Saienko36f2edf2020-05-14 10:44:52 +030056 type: string
Michael Polenchuk486cadf2020-08-24 16:25:51 +040057 ironic_baremetal_tunnel_cidr:
58 type: string
59 ironic_mt_enabled:
60 type: boolean
Anton Samoylov13b055e2020-07-23 15:44:07 +040061 tungstenfabric_enabled:
62 type: boolean
Oleh Hryhorove7feab42020-11-11 18:00:29 +020063 tun_network:
Anton Samoylov13b055e2020-07-23 15:44:07 +040064 type: string
Oleh Hryhorove7feab42020-11-11 18:00:29 +020065 tun_subnet_id:
Anton Samoylov13b055e2020-07-23 15:44:07 +040066 type: string
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020067 functions_override:
68 type: string
69 boot_timeout:
70 type: number
71 description: Boot timeout for instance
Vasyl Saienkof36f39c2020-03-10 00:21:42 +020072 default: 3600
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020073 ucp_master_host:
74 type: string
75 default: ''
Vasyl Saienko84ee4fd2020-09-02 10:00:18 +030076 docker_ucp_image:
77 type: string
Stepan Rogov60bc3522020-12-16 17:43:25 +030078 docker_default_address_pool:
79 type: string
Vasyl Saienkoa94bf182023-04-01 10:42:17 +000080 binary_base_url:
81 type: string
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020082 public_net_id:
83 type: string
84 default: ''
85 docker_ee_release:
86 type: string
Vasyl Saienkofa714102024-03-22 09:30:25 +020087 docker_ee_packages:
88 type: string
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020089 docker_ee_url:
90 type: string
Vasyl Saienkof9ee1582020-03-02 16:53:41 +020091 hardware_metadata:
92 description: The content of lab metadata.
93 type: string
Vasyl Saienko846c6342021-02-24 17:01:36 +020094 frr_bgp_neighbors:
95 description: Comma separated list of IP of BGP neighbors
96 default: ''
97 type: string
Denis Egorenkoe09856a2021-11-01 13:52:46 +040098 num_volumes:
99 type: number
100 default: 0
Vasyl Saienkofa9bed02021-11-04 18:52:45 +0200101 availability_zone:
102 type: string
103 default: nova
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200104
105resources:
106
107 software_config:
108 type: OS::Heat::SoftwareConfig
109 properties:
110 group: ungrouped
111 config:
112 str_replace:
113 template: { get_file: ../scripts/instance_boot.sh }
114 params:
115 $node_type: { get_param: node_type }
Vasyl Saienko8d34ad02021-07-26 11:55:23 +0300116 $kubernetes_installer: { get_param: kubernetes_installer }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200117 $wait_condition_notify: { get_attr: [ wait_handle, curl_cli ] }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200118 $docker_ee_url: { get_param: docker_ee_url }
Vasyl Saienkofa714102024-03-22 09:30:25 +0200119 $docker_ee_packages: { get_param: docker_ee_packages }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200120 $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 }
Vasyl Saienkoa94bf182023-04-01 10:42:17 +0000124 $binary_base_url: { get_param: binary_base_url }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200125 $node_metadata: { get_param: metadata }
Vasyl Saienko0fa6f192020-03-06 16:08:51 +0200126 $control_network_cidr: { get_param: control_network_cidr }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200127 $private_floating_interface: { get_param: private_floating_interface }
128 $private_floating_network_cidr: { get_param: private_floating_network_cidr }
129 $private_floating_interface_ip: { get_attr: [private_floating_server_port, fixed_ips, 0, ip_address] }
130 $functions_override: { get_param: functions_override }
131 $storage_frontend_interface: { get_param: storage_frontend_interface }
132 $storage_frontend_network_interface_ip: { get_attr: [storage_frontend_server_port, fixed_ips, 0, ip_address] }
133 $storage_frontend_network_cidr: { get_param: storage_frontend_network_cidr }
134 $storage_backend_interface: { get_param: storage_backend_interface }
135 $storage_backend_network_interface_ip: { get_attr: [storage_backend_server_port, fixed_ips, 0, ip_address] }
136 $storage_backend_network_cidr: { get_param: storage_backend_network_cidr }
Vasyl Saienko36f2edf2020-05-14 10:44:52 +0300137 $ironic_baremetal_interface_ip: { get_attr: [ironic_baremetal_server_port, fixed_ips, 0, ip_address] }
Vasyl Saienko4c468192020-05-19 11:51:13 +0300138 $ironic_baremetal_network_cidr: { get_param: ironic_baremetal_network_cidr }
Michael Polenchuk486cadf2020-08-24 16:25:51 +0400139 $ironic_baremetal_tunnel_cidr: { get_param: ironic_baremetal_tunnel_cidr }
140 $ironic_mt_enabled: { get_param: ironic_mt_enabled }
Vasyl Saienko3dd0c272020-11-16 17:20:07 +0200141 $tunnel_interface_ip: { get_attr: [tun_server_port, fixed_ips, 0, ip_address] }
Vasyl Saienko846c6342021-02-24 17:01:36 +0200142 $frr_bgp_neighbors: { get_param: frr_bgp_neighbors }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200143
Vasyl Saienkof9ee1582020-03-02 16:53:41 +0200144 inject_files:
145 type: "OS::Heat::CloudConfig"
146 properties:
147 cloud_config:
148 write_files:
149 - path: /usr/sbin/prepare-metadata.py
150 owner: "root:root"
151 permissions: "0755"
152 content: {get_file: ../scripts/prepare-metadata.py}
153 - path: /usr/share/metadata/lab-metadata.yaml
154 owner: "root:root"
155 permissions: "0644"
156 content: { get_param: hardware_metadata}
157
158 install_config_agent:
159 type: "OS::Heat::MultipartMime"
160 properties:
161 parts:
162 - config: {get_resource: software_config}
163 - config: {get_resource: inject_files}
164
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200165 server:
166 type: OS::Nova::Server
167 properties:
Mykyta Karpin8b164562021-03-19 15:20:23 +0200168 config_drive: true
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200169 image: { get_param: image }
170 flavor: { get_param: flavor }
171 key_name: { get_param: key_name }
Vasyl Saienkofa9bed02021-11-04 18:52:45 +0200172 availability_zone: { get_param: availability_zone }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200173 networks:
174 - network: { get_param: accessible_network }
175 # NOTE(ohryhorov): connect to accessible network only as ironic doesn't
176 # support multitenancy use-case. Use private_floating_network for IPAM only.
Vasyl Saienko36f2edf2020-05-14 10:44:52 +0300177 # NOTE(vsaienko): ditto about ironic network
Vasyl Saienkof9ee1582020-03-02 16:53:41 +0200178 user_data_format: SOFTWARE_CONFIG
179 user_data: { get_resource: install_config_agent}
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200180 metadata: { get_param: metadata }
181
182 private_floating_server_port:
183 type: OS::Neutron::Port
184 properties:
185 network_id: { get_param: private_floating_network }
186 port_security_enabled: false
187 fixed_ips:
188 - subnet: { get_param: private_floating_subnet_id }
189
190 storage_backend_server_port:
191 type: OS::Neutron::Port
192 properties:
193 network_id: { get_param: storage_backend_network }
194 port_security_enabled: false
195 fixed_ips:
196 - subnet: { get_param: storage_backend_subnet_id }
197
198 storage_frontend_server_port:
199 type: OS::Neutron::Port
200 properties:
201 network_id: { get_param: storage_frontend_network }
202 port_security_enabled: false
203 fixed_ips:
204 - subnet: { get_param: storage_frontend_subnet_id }
205
Vasyl Saienko36f2edf2020-05-14 10:44:52 +0300206 ironic_baremetal_server_port:
207 type: OS::Neutron::Port
208 properties:
209 network_id: { get_param: ironic_baremetal_network }
210 port_security_enabled: false
211 fixed_ips:
212 - subnet: { get_param: ironic_baremetal_subnet_id }
213
Oleh Hryhorove7feab42020-11-11 18:00:29 +0200214 tun_server_port:
Anton Samoylov13b055e2020-07-23 15:44:07 +0400215 type: OS::Neutron::Port
Anton Samoylov13b055e2020-07-23 15:44:07 +0400216 properties:
Oleh Hryhorove7feab42020-11-11 18:00:29 +0200217 network_id: { get_param: tun_network }
Anton Samoylov13b055e2020-07-23 15:44:07 +0400218 port_security_enabled: false
219 fixed_ips:
Oleh Hryhorove7feab42020-11-11 18:00:29 +0200220 - subnet: { get_param: tun_subnet_id }
Anton Samoylov13b055e2020-07-23 15:44:07 +0400221
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200222 wait_handle:
223 type: OS::Heat::WaitConditionHandle
224 wait_condition:
225 type: OS::Heat::WaitCondition
226 properties:
227 handle: { get_resource: wait_handle }
228 timeout: { get_param: boot_timeout }
229
230
231outputs:
232 server_private_ip:
233 description: IP address of server in private network
234 value: { get_attr: [server, networks, { get_param: accessible_network}, 0]}
235 server_private_floating_ip:
236 description: IP address of server in private floating network
237 value: { get_attr: [private_floating_server_port, fixed_ips, 0, ip_address] }
Vasyl Saienko4e3f4632020-05-26 14:43:09 +0300238 server_ironic_baremetal_ip:
239 description: IP address of server in ironic baremetal network
240 value: { get_attr: [ironic_baremetal_server_port, fixed_ips, 0, ip_address] }
Anton Samoylov13b055e2020-07-23 15:44:07 +0400241 server_tf_data_ip:
242 description: IP address of server in tf data network
Oleh Hryhorove7feab42020-11-11 18:00:29 +0200243 value: { get_attr: [tun_server_port, fixed_ips, 0, ip_address] }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200244 server_public_ip:
245 description: Floating IP address of server in public network
246 value: { get_attr: [server, networks, { get_param: accessible_network}, 0]}
Vasyl Saienko846c6342021-02-24 17:01:36 +0200247 server_tun_ip:
248 description: IP address of server in tunnel network
249 value: { get_attr: [ tun_server_port, fixed_ips, 0, ip_address ] }
Vasyl Saienkof9ee1582020-03-02 16:53:41 +0200250 wc_data:
251 description: Metadata from instance
252 value: { get_attr: [wait_condition, data]}