blob: 8081dd8061e4565387c9339685dabfb5f4f93979 [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
Oleh Hryhorove7feab42020-11-11 18:00:29 +020061 tun_network:
Anton Samoylov13b055e2020-07-23 15:44:07 +040062 type: string
Oleh Hryhorove7feab42020-11-11 18:00:29 +020063 tun_subnet_id:
Anton Samoylov13b055e2020-07-23 15:44:07 +040064 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
87resources:
88
89 software_config:
90 type: OS::Heat::SoftwareConfig
91 properties:
92 group: ungrouped
93 config:
94 str_replace:
95 template: { get_file: ../scripts/instance_boot.sh }
96 params:
97 $node_type: { get_param: node_type }
98 $wait_condition_notify: { get_attr: [ wait_handle, curl_cli ] }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020099 $docker_ee_url: { get_param: docker_ee_url }
100 $docker_ee_release: { get_param: docker_ee_release }
101 $ucp_master_host: { get_param: ucp_master_host }
Vasyl Saienko84ee4fd2020-09-02 10:00:18 +0300102 $docker_ucp_image: { get_param: docker_ucp_image }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200103 $node_metadata: { get_param: metadata }
Vasyl Saienko0fa6f192020-03-06 16:08:51 +0200104 $control_network_cidr: { get_param: control_network_cidr }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200105 $private_floating_interface: { get_param: private_floating_interface }
106 $private_floating_network_cidr: { get_param: private_floating_network_cidr }
107 $private_floating_interface_ip: { get_attr: [private_floating_server_port, fixed_ips, 0, ip_address] }
108 $functions_override: { get_param: functions_override }
109 $storage_frontend_interface: { get_param: storage_frontend_interface }
110 $storage_frontend_network_interface_ip: { get_attr: [storage_frontend_server_port, fixed_ips, 0, ip_address] }
111 $storage_frontend_network_cidr: { get_param: storage_frontend_network_cidr }
112 $storage_backend_interface: { get_param: storage_backend_interface }
113 $storage_backend_network_interface_ip: { get_attr: [storage_backend_server_port, fixed_ips, 0, ip_address] }
114 $storage_backend_network_cidr: { get_param: storage_backend_network_cidr }
Vasyl Saienko36f2edf2020-05-14 10:44:52 +0300115 $ironic_baremetal_interface_ip: { get_attr: [ironic_baremetal_server_port, fixed_ips, 0, ip_address] }
Vasyl Saienko4c468192020-05-19 11:51:13 +0300116 $ironic_baremetal_network_cidr: { get_param: ironic_baremetal_network_cidr }
Michael Polenchuk486cadf2020-08-24 16:25:51 +0400117 $ironic_baremetal_tunnel_cidr: { get_param: ironic_baremetal_tunnel_cidr }
118 $ironic_mt_enabled: { get_param: ironic_mt_enabled }
Vasyl Saienko3dd0c272020-11-16 17:20:07 +0200119 $tunnel_interface_ip: { get_attr: [tun_server_port, fixed_ips, 0, ip_address] }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200120
Vasyl Saienkof9ee1582020-03-02 16:53:41 +0200121 inject_files:
122 type: "OS::Heat::CloudConfig"
123 properties:
124 cloud_config:
125 write_files:
126 - path: /usr/sbin/prepare-metadata.py
127 owner: "root:root"
128 permissions: "0755"
129 content: {get_file: ../scripts/prepare-metadata.py}
130 - path: /usr/share/metadata/lab-metadata.yaml
131 owner: "root:root"
132 permissions: "0644"
133 content: { get_param: hardware_metadata}
134
135 install_config_agent:
136 type: "OS::Heat::MultipartMime"
137 properties:
138 parts:
139 - config: {get_resource: software_config}
140 - config: {get_resource: inject_files}
141
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200142 server:
143 type: OS::Nova::Server
144 properties:
145 image: { get_param: image }
146 flavor: { get_param: flavor }
147 key_name: { get_param: key_name }
148 availability_zone: nova
149 networks:
150 - network: { get_param: accessible_network }
151 # NOTE(ohryhorov): connect to accessible network only as ironic doesn't
152 # support multitenancy use-case. Use private_floating_network for IPAM only.
Vasyl Saienko36f2edf2020-05-14 10:44:52 +0300153 # NOTE(vsaienko): ditto about ironic network
Vasyl Saienkof9ee1582020-03-02 16:53:41 +0200154 user_data_format: SOFTWARE_CONFIG
155 user_data: { get_resource: install_config_agent}
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200156 metadata: { get_param: metadata }
157
158 private_floating_server_port:
159 type: OS::Neutron::Port
160 properties:
161 network_id: { get_param: private_floating_network }
162 port_security_enabled: false
163 fixed_ips:
164 - subnet: { get_param: private_floating_subnet_id }
165
166 storage_backend_server_port:
167 type: OS::Neutron::Port
168 properties:
169 network_id: { get_param: storage_backend_network }
170 port_security_enabled: false
171 fixed_ips:
172 - subnet: { get_param: storage_backend_subnet_id }
173
174 storage_frontend_server_port:
175 type: OS::Neutron::Port
176 properties:
177 network_id: { get_param: storage_frontend_network }
178 port_security_enabled: false
179 fixed_ips:
180 - subnet: { get_param: storage_frontend_subnet_id }
181
Vasyl Saienko36f2edf2020-05-14 10:44:52 +0300182 ironic_baremetal_server_port:
183 type: OS::Neutron::Port
184 properties:
185 network_id: { get_param: ironic_baremetal_network }
186 port_security_enabled: false
187 fixed_ips:
188 - subnet: { get_param: ironic_baremetal_subnet_id }
189
Oleh Hryhorove7feab42020-11-11 18:00:29 +0200190 tun_server_port:
Anton Samoylov13b055e2020-07-23 15:44:07 +0400191 type: OS::Neutron::Port
Anton Samoylov13b055e2020-07-23 15:44:07 +0400192 properties:
Oleh Hryhorove7feab42020-11-11 18:00:29 +0200193 network_id: { get_param: tun_network }
Anton Samoylov13b055e2020-07-23 15:44:07 +0400194 port_security_enabled: false
195 fixed_ips:
Oleh Hryhorove7feab42020-11-11 18:00:29 +0200196 - subnet: { get_param: tun_subnet_id }
Anton Samoylov13b055e2020-07-23 15:44:07 +0400197
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200198 wait_handle:
199 type: OS::Heat::WaitConditionHandle
200 wait_condition:
201 type: OS::Heat::WaitCondition
202 properties:
203 handle: { get_resource: wait_handle }
204 timeout: { get_param: boot_timeout }
205
206
207outputs:
208 server_private_ip:
209 description: IP address of server in private network
210 value: { get_attr: [server, networks, { get_param: accessible_network}, 0]}
211 server_private_floating_ip:
212 description: IP address of server in private floating network
213 value: { get_attr: [private_floating_server_port, fixed_ips, 0, ip_address] }
Vasyl Saienko4e3f4632020-05-26 14:43:09 +0300214 server_ironic_baremetal_ip:
215 description: IP address of server in ironic baremetal network
216 value: { get_attr: [ironic_baremetal_server_port, fixed_ips, 0, ip_address] }
Anton Samoylov13b055e2020-07-23 15:44:07 +0400217 server_tf_data_ip:
218 description: IP address of server in tf data network
Oleh Hryhorove7feab42020-11-11 18:00:29 +0200219 value: { get_attr: [tun_server_port, fixed_ips, 0, ip_address] }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200220 server_public_ip:
221 description: Floating IP address of server in public network
222 value: { get_attr: [server, networks, { get_param: accessible_network}, 0]}
Vasyl Saienkof9ee1582020-03-02 16:53:41 +0200223 wc_data:
224 description: Metadata from instance
225 value: { get_attr: [wait_condition, data]}