blob: 930868f46ed048b2734528352ad55d1cd9ece5d1 [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
46 security_group:
47 type: string
48 constraints:
49 - custom_constraint: neutron.security_group
50
51 public_network:
52 type: string
53 default: public
54 constraints:
55 - custom_constraint: neutron.network
56
57 external_network:
58 type: string
59 constraints:
60 - custom_constraint: neutron.network
61
62 extra_volumes_count:
63 type: number
64 default: 0
65
66 extra_volumes_size:
67 type: number
68 default: 0
69
70conditions:
71 has_extra_volumes:
72 not:
73 equals:
74 - get_param: extra_volumes_count
75 - 0
76
77resources:
78 internal_port:
79 type: OS::Neutron::Port
80 properties:
81 network: { get_param: internal_network }
82 port_security_enabled: false
83
84 floating_ip:
85 type: OS::Neutron::FloatingIP
86 properties:
87 floating_network: { get_param: public_network }
88 port_id: { get_resource: internal_port }
89
90 external_port:
91 type: OS::Neutron::Port
92 properties:
93 network: { get_param: external_network }
94 security_groups:
95 - { get_param: security_group }
96
97 server:
98 type: OS::Nova::Server
99 properties:
100 name:
101 yaql:
102 expression: concat($.data.name, str($.data.index + 1))
103 data:
104 name: { get_param: name }
105 index: { get_param: index }
106 image: { get_param: image }
107 flavor: { get_param: instance_type }
108 key_name: { get_param: key_name }
Michiel Piscaer97b7fd32022-03-17 12:15:21 +0100109 config_drive: true
Mohammed Naser336caf42022-03-11 17:56:45 -0500110 networks:
111 - port: { get_resource: internal_port }
112 - port: { get_resource: external_port }
113
114 volumes:
115 type: OS::Heat::ResourceGroup
116 condition: has_extra_volumes
117 properties:
118 count: { get_param: extra_volumes_count }
119 resource_def:
120 type: volume.yaml
121 properties:
122 instance_uuid: { get_resource: server }
123 volume_size: { get_param: extra_volumes_size }
124
125outputs:
126 floating_ip_address:
127 value: { get_attr: [floating_ip, floating_ip_address] }