blob: c9a337c54e6982ac6b870b917b7422c5a3016a23 [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_frontend_network_cidr:
34 type: string
35 storage_frontend_network:
36 type: string
37 storage_frontend_subnet_id:
38 type: string
Oleh Hryhorov1832d232020-03-05 11:33:13 +020039 storage_frontend_interface:
40 type: string
Vasyl Saienko0fa6f192020-03-06 16:08:51 +020041 control_network_cidr:
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020042 type: string
Vasyl Saienko36f2edf2020-05-14 10:44:52 +030043 ironic_baremetal_network:
44 type: string
45 ironic_baremetal_subnet_id:
46 type: string
Vasyl Saienko4c468192020-05-19 11:51:13 +030047 ironic_baremetal_network_cidr:
Vasyl Saienko36f2edf2020-05-14 10:44:52 +030048 type: string
Michael Polenchuk486cadf2020-08-24 16:25:51 +040049 ironic_baremetal_tunnel_cidr:
50 type: string
51 ironic_mt_enabled:
52 type: boolean
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020053 functions_override:
54 type: string
55 boot_timeout:
56 type: number
57 description: Boot timeout for instance
Vasyl Saienkof36f39c2020-03-10 00:21:42 +020058 default: 3600
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020059 ucp_master_host:
60 type: string
61 default: ''
Vasyl Saienko84ee4fd2020-09-02 10:00:18 +030062 docker_ucp_image:
63 type: string
Stepan Rogov60bc3522020-12-16 17:43:25 +030064 docker_default_address_pool:
65 type: string
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020066 public_net_id:
67 type: string
68 default: ''
69 docker_ee_release:
70 type: string
71 docker_ee_url:
72 type: string
Vasyl Saienkof9ee1582020-03-02 16:53:41 +020073 hardware_metadata:
74 description: The content of lab metadata.
75 type: string
Vasyl Saienkofa9bed02021-11-04 18:52:45 +020076 availability_zone:
77 type: string
78 default: nova
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020079
80resources:
81
82 software_config:
83 type: OS::Heat::SoftwareConfig
84 properties:
85 group: ungrouped
86 config:
87 str_replace:
88 template: { get_file: ../scripts/instance_boot.sh }
89 params:
90 $node_type: { get_param: node_type }
Vasyl Saienko8d34ad02021-07-26 11:55:23 +030091 $kubernetes_installer: { get_param: kubernetes_installer }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020092 $wait_condition_notify: { get_attr: [ wait_handle, curl_cli ] }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020093 $docker_ee_url: { get_param: docker_ee_url }
94 $docker_ee_release: { get_param: docker_ee_release }
95 $ucp_master_host: { get_param: ucp_master_host }
Vasyl Saienko84ee4fd2020-09-02 10:00:18 +030096 $docker_ucp_image: { get_param: docker_ucp_image }
Stepan Rogov60bc3522020-12-16 17:43:25 +030097 $docker_default_address_pool: { get_param: docker_default_address_pool }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020098 $node_metadata: { get_param: metadata }
Vasyl Saienko0fa6f192020-03-06 16:08:51 +020099 $control_network_cidr: { get_param: control_network_cidr }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200100 $private_floating_interface: { get_param: private_floating_interface }
101 $private_floating_network_cidr: { get_param: private_floating_network_cidr }
102 $private_floating_interface_ip: { get_attr: [private_floating_server_port, fixed_ips, 0, ip_address] }
103 $functions_override: { get_param: functions_override }
Oleh Hryhorov1832d232020-03-05 11:33:13 +0200104 $storage_frontend_interface: { get_param: storage_frontend_interface }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200105 $storage_frontend_network_interface_ip: { get_attr: [storage_frontend_server_port, fixed_ips, 0, ip_address] }
106 $storage_frontend_network_cidr: { get_param: storage_frontend_network_cidr }
Vasyl Saienko36f2edf2020-05-14 10:44:52 +0300107 $ironic_baremetal_interface_ip: { get_attr: [ironic_baremetal_server_port, fixed_ips, 0, ip_address] }
Vasyl Saienko4c468192020-05-19 11:51:13 +0300108 $ironic_baremetal_network_cidr: { get_param: ironic_baremetal_network_cidr }
Michael Polenchuk486cadf2020-08-24 16:25:51 +0400109 $ironic_baremetal_tunnel_cidr: { get_param: ironic_baremetal_tunnel_cidr }
110 $ironic_mt_enabled: { get_param: ironic_mt_enabled }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200111
Vasyl Saienkof9ee1582020-03-02 16:53:41 +0200112 inject_files:
113 type: "OS::Heat::CloudConfig"
114 properties:
115 cloud_config:
116 write_files:
117 - path: /usr/sbin/prepare-metadata.py
118 owner: "root:root"
119 permissions: "0755"
120 content: {get_file: ../scripts/prepare-metadata.py}
121 - path: /usr/share/metadata/lab-metadata.yaml
122 owner: "root:root"
123 permissions: "0644"
124 content: { get_param: hardware_metadata}
Mykyta Karpinbac78b42021-12-07 11:25:03 +0200125 - path: /usr/sbin/calico_disable_offloading.sh
126 owner: "root:root"
127 permissions: "0755"
128 content: {get_file: ../scripts/calico_disable_offloading.sh}
Vasyl Saienkof9ee1582020-03-02 16:53:41 +0200129
130 install_config_agent:
131 type: "OS::Heat::MultipartMime"
132 properties:
133 parts:
134 - config: {get_resource: software_config}
135 - config: {get_resource: inject_files}
136
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200137 server:
138 type: OS::Nova::Server
139 properties:
Mykyta Karpin8b164562021-03-19 15:20:23 +0200140 config_drive: true
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200141 image: { get_param: image }
142 flavor: { get_param: flavor }
143 key_name: { get_param: key_name }
Vasyl Saienkofa9bed02021-11-04 18:52:45 +0200144 availability_zone: { get_param: availability_zone }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200145 networks:
146 - network: { get_param: accessible_network }
147 # NOTE(ohryhorov): connect to accessible network only as ironic doesn't
148 # support multitenancy use-case. Use private_floating_network for IPAM only.
Vasyl Saienko36f2edf2020-05-14 10:44:52 +0300149 # NOTE(vsaienko): ditto about ironic baremetal network
Vasyl Saienkof9ee1582020-03-02 16:53:41 +0200150 user_data_format: SOFTWARE_CONFIG
151 user_data: { get_resource: install_config_agent}
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200152 metadata: { get_param: metadata }
153
154 private_floating_server_port:
155 type: OS::Neutron::Port
156 properties:
157 network_id: { get_param: private_floating_network }
158 port_security_enabled: false
159 fixed_ips:
160 - subnet: { get_param: private_floating_subnet_id }
161
162 storage_frontend_server_port:
163 type: OS::Neutron::Port
164 properties:
165 network_id: { get_param: storage_frontend_network }
166 port_security_enabled: false
167 fixed_ips:
168 - subnet: { get_param: storage_frontend_subnet_id }
169
Vasyl Saienko36f2edf2020-05-14 10:44:52 +0300170 ironic_baremetal_server_port:
171 type: OS::Neutron::Port
172 properties:
173 network_id: { get_param: ironic_baremetal_network }
174 port_security_enabled: false
175 fixed_ips:
176 - subnet: { get_param: ironic_baremetal_subnet_id }
177
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200178 wait_handle:
179 type: OS::Heat::WaitConditionHandle
180 wait_condition:
181 type: OS::Heat::WaitCondition
182 properties:
183 handle: { get_resource: wait_handle }
184 timeout: { get_param: boot_timeout }
185
186
187outputs:
188 server_private_ip:
189 description: IP address of server in private network
190 value: { get_attr: [server, networks, { get_param: accessible_network}, 0]}
191 server_private_floating_ip:
192 description: IP address of server in private floating network
193 value: { get_attr: [private_floating_server_port, fixed_ips, 0, ip_address] }
Vasyl Saienko4e3f4632020-05-26 14:43:09 +0300194 server_ironic_baremetal_ip:
195 description: IP address of server in ironic baremetal network
196 value: { get_attr: [ironic_baremetal_server_port, fixed_ips, 0, ip_address] }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200197 server_public_ip:
198 description: Floating IP address of server in public network
199 value: { get_attr: [server, networks, { get_param: accessible_network}, 0]}
Vasyl Saienkof9ee1582020-03-02 16:53:41 +0200200 wc_data:
201 description: Metadata from instance
202 value: { get_attr: [wait_condition, data]}