blob: 53a9c5f7f8e43b6a2a4525ceb755643034873be4 [file] [log] [blame]
Mohammed Naser336caf42022-03-11 17:56:45 -05001# Copyright (c) 2022 VEXXHOST, Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
15heat_template_version: 2016-10-14
16
17parameters:
18 name:
19 type: string
20
21 index:
22 type: number
23
24 image:
25 type: string
26 default: Ubuntu 20.04.3 LTS (x86_64) [2021-10-04]
27 constraints:
28 - custom_constraint: glance.image
29
30 instance_type:
31 type: string
32 default: v3-standard-4
33 constraints:
34 - custom_constraint: nova.flavor
35
36 internal_network:
37 type: string
38 constraints:
39 - custom_constraint: neutron.network
40
41 key_name:
42 type: string
43 constraints:
44 - custom_constraint: nova.keypair
45
Mohammed Naser336caf42022-03-11 17:56:45 -050046 public_network:
47 type: string
48 default: public
49 constraints:
50 - custom_constraint: neutron.network
51
52 external_network:
53 type: string
54 constraints:
55 - custom_constraint: neutron.network
56
57 extra_volumes_count:
58 type: number
59 default: 0
60
61 extra_volumes_size:
62 type: number
63 default: 0
64
65conditions:
66 has_extra_volumes:
67 not:
68 equals:
69 - get_param: extra_volumes_count
70 - 0
71
72resources:
73 internal_port:
74 type: OS::Neutron::Port
75 properties:
76 network: { get_param: internal_network }
77 port_security_enabled: false
78
79 floating_ip:
80 type: OS::Neutron::FloatingIP
81 properties:
82 floating_network: { get_param: public_network }
83 port_id: { get_resource: internal_port }
84
85 external_port:
86 type: OS::Neutron::Port
87 properties:
88 network: { get_param: external_network }
okozachenko87131922022-04-09 01:04:53 +100089 port_security_enabled: false
Mohammed Naser336caf42022-03-11 17:56:45 -050090
91 server:
92 type: OS::Nova::Server
93 properties:
94 name:
95 yaql:
96 expression: concat($.data.name, str($.data.index + 1))
97 data:
98 name: { get_param: name }
99 index: { get_param: index }
100 image: { get_param: image }
101 flavor: { get_param: instance_type }
102 key_name: { get_param: key_name }
Michiel Piscaer97b7fd32022-03-17 12:15:21 +0100103 config_drive: true
Mohammed Naser336caf42022-03-11 17:56:45 -0500104 networks:
105 - port: { get_resource: internal_port }
106 - port: { get_resource: external_port }
107
108 volumes:
109 type: OS::Heat::ResourceGroup
110 condition: has_extra_volumes
111 properties:
112 count: { get_param: extra_volumes_count }
113 resource_def:
114 type: volume.yaml
115 properties:
116 instance_uuid: { get_resource: server }
117 volume_size: { get_param: extra_volumes_size }
118
119outputs:
120 floating_ip_address:
121 value: { get_attr: [floating_ip, floating_ip_address] }