blob: 1512f16a3fd107bdb0dac09cca7e81e801b765cd [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_frontend_network_cidr:
32 type: string
33 storage_frontend_network:
34 type: string
35 storage_frontend_subnet_id:
36 type: string
Oleh Hryhorov1832d232020-03-05 11:33:13 +020037 storage_frontend_interface:
38 type: string
Vasyl Saienko0fa6f192020-03-06 16:08:51 +020039 control_network_cidr:
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020040 type: string
Vasyl Saienko36f2edf2020-05-14 10:44:52 +030041 ironic_baremetal_network:
42 type: string
43 ironic_baremetal_subnet_id:
44 type: string
Vasyl Saienko4c468192020-05-19 11:51:13 +030045 ironic_baremetal_network_cidr:
Vasyl Saienko36f2edf2020-05-14 10:44:52 +030046 type: string
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020047 functions_override:
48 type: string
49 boot_timeout:
50 type: number
51 description: Boot timeout for instance
Vasyl Saienkof36f39c2020-03-10 00:21:42 +020052 default: 3600
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020053 ucp_master_host:
54 type: string
55 default: ''
56 public_net_id:
57 type: string
58 default: ''
59 docker_ee_release:
60 type: string
61 docker_ee_url:
62 type: string
Vasyl Saienkof9ee1582020-03-02 16:53:41 +020063 hardware_metadata:
64 description: The content of lab metadata.
65 type: string
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020066
67resources:
68
69 software_config:
70 type: OS::Heat::SoftwareConfig
71 properties:
72 group: ungrouped
73 config:
74 str_replace:
75 template: { get_file: ../scripts/instance_boot.sh }
76 params:
77 $node_type: { get_param: node_type }
78 $wait_condition_notify: { get_attr: [ wait_handle, curl_cli ] }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020079 $docker_ee_url: { get_param: docker_ee_url }
80 $docker_ee_release: { get_param: docker_ee_release }
81 $ucp_master_host: { get_param: ucp_master_host }
82 $node_metadata: { get_param: metadata }
Vasyl Saienko0fa6f192020-03-06 16:08:51 +020083 $control_network_cidr: { get_param: control_network_cidr }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020084 $private_floating_interface: { get_param: private_floating_interface }
85 $private_floating_network_cidr: { get_param: private_floating_network_cidr }
86 $private_floating_interface_ip: { get_attr: [private_floating_server_port, fixed_ips, 0, ip_address] }
87 $functions_override: { get_param: functions_override }
Oleh Hryhorov1832d232020-03-05 11:33:13 +020088 $storage_frontend_interface: { get_param: storage_frontend_interface }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020089 $storage_frontend_network_interface_ip: { get_attr: [storage_frontend_server_port, fixed_ips, 0, ip_address] }
90 $storage_frontend_network_cidr: { get_param: storage_frontend_network_cidr }
Vasyl Saienko36f2edf2020-05-14 10:44:52 +030091 $ironic_baremetal_interface_ip: { get_attr: [ironic_baremetal_server_port, fixed_ips, 0, ip_address] }
Vasyl Saienko4c468192020-05-19 11:51:13 +030092 $ironic_baremetal_network_cidr: { get_param: ironic_baremetal_network_cidr }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +020093
Vasyl Saienkof9ee1582020-03-02 16:53:41 +020094 inject_files:
95 type: "OS::Heat::CloudConfig"
96 properties:
97 cloud_config:
98 write_files:
99 - path: /usr/sbin/prepare-metadata.py
100 owner: "root:root"
101 permissions: "0755"
102 content: {get_file: ../scripts/prepare-metadata.py}
103 - path: /usr/share/metadata/lab-metadata.yaml
104 owner: "root:root"
105 permissions: "0644"
106 content: { get_param: hardware_metadata}
107
108 install_config_agent:
109 type: "OS::Heat::MultipartMime"
110 properties:
111 parts:
112 - config: {get_resource: software_config}
113 - config: {get_resource: inject_files}
114
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200115 server:
116 type: OS::Nova::Server
117 properties:
118 image: { get_param: image }
119 flavor: { get_param: flavor }
120 key_name: { get_param: key_name }
121 availability_zone: nova
122 networks:
123 - network: { get_param: accessible_network }
124 # NOTE(ohryhorov): connect to accessible network only as ironic doesn't
125 # support multitenancy use-case. Use private_floating_network for IPAM only.
Vasyl Saienko36f2edf2020-05-14 10:44:52 +0300126 # NOTE(vsaienko): ditto about ironic baremetal network
Vasyl Saienkof9ee1582020-03-02 16:53:41 +0200127 user_data_format: SOFTWARE_CONFIG
128 user_data: { get_resource: install_config_agent}
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200129 metadata: { get_param: metadata }
130
131 private_floating_server_port:
132 type: OS::Neutron::Port
133 properties:
134 network_id: { get_param: private_floating_network }
135 port_security_enabled: false
136 fixed_ips:
137 - subnet: { get_param: private_floating_subnet_id }
138
139 storage_frontend_server_port:
140 type: OS::Neutron::Port
141 properties:
142 network_id: { get_param: storage_frontend_network }
143 port_security_enabled: false
144 fixed_ips:
145 - subnet: { get_param: storage_frontend_subnet_id }
146
Vasyl Saienko36f2edf2020-05-14 10:44:52 +0300147 ironic_baremetal_server_port:
148 type: OS::Neutron::Port
149 properties:
150 network_id: { get_param: ironic_baremetal_network }
151 port_security_enabled: false
152 fixed_ips:
153 - subnet: { get_param: ironic_baremetal_subnet_id }
154
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200155 wait_handle:
156 type: OS::Heat::WaitConditionHandle
157 wait_condition:
158 type: OS::Heat::WaitCondition
159 properties:
160 handle: { get_resource: wait_handle }
161 timeout: { get_param: boot_timeout }
162
163
164outputs:
165 server_private_ip:
166 description: IP address of server in private network
167 value: { get_attr: [server, networks, { get_param: accessible_network}, 0]}
168 server_private_floating_ip:
169 description: IP address of server in private floating network
170 value: { get_attr: [private_floating_server_port, fixed_ips, 0, ip_address] }
Vasyl Saienko4e3f4632020-05-26 14:43:09 +0300171 server_ironic_baremetal_ip:
172 description: IP address of server in ironic baremetal network
173 value: { get_attr: [ironic_baremetal_server_port, fixed_ips, 0, ip_address] }
Oleh Hryhorovdccb1cd2020-03-04 15:52:55 +0200174 server_public_ip:
175 description: Floating IP address of server in public network
176 value: { get_attr: [server, networks, { get_param: accessible_network}, 0]}
Vasyl Saienkof9ee1582020-03-02 16:53:41 +0200177 wc_data:
178 description: Metadata from instance
179 value: { get_attr: [wait_condition, data]}