blob: 162da833626f1bfb66c9955baac7e24d49541c8a [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
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
31 storage_backend_network_cidr:
32 type: string
33 storage_backend_network:
34 type: string
35 storage_backend_subnet_id:
36 type: string
37 storage_backend_interface:
38 type: string
39 storage_frontend_network:
40 type: string
41 storage_frontend_network_cidr:
42 type: string
43 storage_frontend_subnet_id:
44 type: string
45 storage_frontend_interface:
46 type: string
Vasyl Saienko0fa6f192020-03-06 16:08:51 +020047 control_network_cidr:
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020048 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 Samoylov13b055e2020-07-23 15:44:07 +040059 tungstenfabric_enabled:
60 type: boolean
61 tf_data_network:
62 type: string
63 tf_data_subnet_id:
64 type: string
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020065 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
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020071 ucp_master_host:
72 type: string
73 default: ''
Vasyl Saienko84ee4fd2020-09-02 10:00:18 +030074 docker_ucp_image:
75 type: string
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020076 public_net_id:
77 type: string
78 default: ''
79 docker_ee_release:
80 type: string
81 docker_ee_url:
82 type: string
Vasyl Saienkof9ee1582020-03-02 16:53:41 +020083 hardware_metadata:
84 description: The content of lab metadata.
85 type: string
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020086
Anton Samoylov13b055e2020-07-23 15:44:07 +040087conditions:
88 create_tf_data_network_res:
89 get_param: tungstenfabric_enabled
90
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020091resources:
92
93 software_config:
94 type: OS::Heat::SoftwareConfig
95 properties:
96 group: ungrouped
97 config:
98 str_replace:
99 template: { get_file: ../scripts/instance_boot.sh }
100 params:
101 $node_type: { get_param: node_type }
102 $wait_condition_notify: { get_attr: [ wait_handle, curl_cli ] }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200103 $docker_ee_url: { get_param: docker_ee_url }
104 $docker_ee_release: { get_param: docker_ee_release }
105 $ucp_master_host: { get_param: ucp_master_host }
Vasyl Saienko84ee4fd2020-09-02 10:00:18 +0300106 $docker_ucp_image: { get_param: docker_ucp_image }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200107 $node_metadata: { get_param: metadata }
Vasyl Saienko0fa6f192020-03-06 16:08:51 +0200108 $control_network_cidr: { get_param: control_network_cidr }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200109 $private_floating_interface: { get_param: private_floating_interface }
110 $private_floating_network_cidr: { get_param: private_floating_network_cidr }
111 $private_floating_interface_ip: { get_attr: [private_floating_server_port, fixed_ips, 0, ip_address] }
112 $functions_override: { get_param: functions_override }
113 $storage_frontend_interface: { get_param: storage_frontend_interface }
114 $storage_frontend_network_interface_ip: { get_attr: [storage_frontend_server_port, fixed_ips, 0, ip_address] }
115 $storage_frontend_network_cidr: { get_param: storage_frontend_network_cidr }
116 $storage_backend_interface: { get_param: storage_backend_interface }
117 $storage_backend_network_interface_ip: { get_attr: [storage_backend_server_port, fixed_ips, 0, ip_address] }
118 $storage_backend_network_cidr: { get_param: storage_backend_network_cidr }
Vasyl Saienko36f2edf2020-05-14 10:44:52 +0300119 $ironic_baremetal_interface_ip: { get_attr: [ironic_baremetal_server_port, fixed_ips, 0, ip_address] }
Vasyl Saienko4c468192020-05-19 11:51:13 +0300120 $ironic_baremetal_network_cidr: { get_param: ironic_baremetal_network_cidr }
Michael Polenchuk486cadf2020-08-24 16:25:51 +0400121 $ironic_baremetal_tunnel_cidr: { get_param: ironic_baremetal_tunnel_cidr }
122 $ironic_mt_enabled: { get_param: ironic_mt_enabled }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200123
Vasyl Saienkof9ee1582020-03-02 16:53:41 +0200124 inject_files:
125 type: "OS::Heat::CloudConfig"
126 properties:
127 cloud_config:
128 write_files:
129 - path: /usr/sbin/prepare-metadata.py
130 owner: "root:root"
131 permissions: "0755"
132 content: {get_file: ../scripts/prepare-metadata.py}
133 - path: /usr/share/metadata/lab-metadata.yaml
134 owner: "root:root"
135 permissions: "0644"
136 content: { get_param: hardware_metadata}
137
138 install_config_agent:
139 type: "OS::Heat::MultipartMime"
140 properties:
141 parts:
142 - config: {get_resource: software_config}
143 - config: {get_resource: inject_files}
144
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200145 server:
146 type: OS::Nova::Server
147 properties:
148 image: { get_param: image }
149 flavor: { get_param: flavor }
150 key_name: { get_param: key_name }
151 availability_zone: nova
152 networks:
153 - network: { get_param: accessible_network }
154 # NOTE(ohryhorov): connect to accessible network only as ironic doesn't
155 # support multitenancy use-case. Use private_floating_network for IPAM only.
Vasyl Saienko36f2edf2020-05-14 10:44:52 +0300156 # NOTE(vsaienko): ditto about ironic network
Vasyl Saienkof9ee1582020-03-02 16:53:41 +0200157 user_data_format: SOFTWARE_CONFIG
158 user_data: { get_resource: install_config_agent}
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200159 metadata: { get_param: metadata }
160
161 private_floating_server_port:
162 type: OS::Neutron::Port
163 properties:
164 network_id: { get_param: private_floating_network }
165 port_security_enabled: false
166 fixed_ips:
167 - subnet: { get_param: private_floating_subnet_id }
168
169 storage_backend_server_port:
170 type: OS::Neutron::Port
171 properties:
172 network_id: { get_param: storage_backend_network }
173 port_security_enabled: false
174 fixed_ips:
175 - subnet: { get_param: storage_backend_subnet_id }
176
177 storage_frontend_server_port:
178 type: OS::Neutron::Port
179 properties:
180 network_id: { get_param: storage_frontend_network }
181 port_security_enabled: false
182 fixed_ips:
183 - subnet: { get_param: storage_frontend_subnet_id }
184
Vasyl Saienko36f2edf2020-05-14 10:44:52 +0300185 ironic_baremetal_server_port:
186 type: OS::Neutron::Port
187 properties:
188 network_id: { get_param: ironic_baremetal_network }
189 port_security_enabled: false
190 fixed_ips:
191 - subnet: { get_param: ironic_baremetal_subnet_id }
192
Anton Samoylov13b055e2020-07-23 15:44:07 +0400193 tf_data_server_port:
194 type: OS::Neutron::Port
195 condition: create_tf_data_network_res
196 properties:
197 network_id: { get_param: tf_data_network }
198 port_security_enabled: false
199 fixed_ips:
200 - subnet: { get_param: tf_data_subnet_id }
201
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200202 wait_handle:
203 type: OS::Heat::WaitConditionHandle
204 wait_condition:
205 type: OS::Heat::WaitCondition
206 properties:
207 handle: { get_resource: wait_handle }
208 timeout: { get_param: boot_timeout }
209
210
211outputs:
212 server_private_ip:
213 description: IP address of server in private network
214 value: { get_attr: [server, networks, { get_param: accessible_network}, 0]}
215 server_private_floating_ip:
216 description: IP address of server in private floating network
217 value: { get_attr: [private_floating_server_port, fixed_ips, 0, ip_address] }
Vasyl Saienko4e3f4632020-05-26 14:43:09 +0300218 server_ironic_baremetal_ip:
219 description: IP address of server in ironic baremetal network
220 value: { get_attr: [ironic_baremetal_server_port, fixed_ips, 0, ip_address] }
Anton Samoylov13b055e2020-07-23 15:44:07 +0400221 server_tf_data_ip:
222 description: IP address of server in tf data network
223 value: { get_attr: [tf_data_server_port, fixed_ips, 0, ip_address] }
224 condition: create_tf_data_network_res
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200225 server_public_ip:
226 description: Floating IP address of server in public network
227 value: { get_attr: [server, networks, { get_param: accessible_network}, 0]}
Vasyl Saienkof9ee1582020-03-02 16:53:41 +0200228 wc_data:
229 description: Metadata from instance
230 value: { get_attr: [wait_condition, data]}