-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack-example.yaml
More file actions
176 lines (148 loc) · 4.53 KB
/
stack-example.yaml
File metadata and controls
176 lines (148 loc) · 4.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
heat_template_version: 2013-05-23
description: >
Open Workload Project heat templeate.
##
parameters:
image:
type: string
description: Name or ID of image to use for the server
constraints:
- custom_constraint: glance.image
flavor:
type: string
description: Name of flavor to use for the server
constraints:
- custom_constraint: nova.flavor
key_name:
type: string
description: Name of key pair to use for the server
constraints:
- custom_constraint: nova.keypair
public_net:
type: string
description: Name or ID of public network to use for the server
constraints:
- custom_constraint: neutron.network
private_net_cidr:
type: string
description: Private network address (CIDR notation, i.e 10.0.0.0/24)
private_net_gateway:
type: string
description: Private network gateway address
private_net_pool_start:
type: string
description: Start of private network IP address allocation pool
private_net_pool_end:
type: string
description: End of private network IP address allocation pool
count:
type: string
description: Count of compute instances
##
resources:
security_group:
type: OS::Neutron::SecurityGroup
properties:
name:
str_replace:
template: $STACK_NAME-security_group
params:
$STACK_NAME: { get_param: "OS::stack_name" }
rules:
- protocol: icmp
- protocol: tcp
port_range_min: 80
port_range_max: 80
- protocol: tcp
port_range_min: 22
port_range_max: 22
private_net:
type: OS::Neutron::Net
properties:
name:
str_replace:
template: $STACK_NAME-private_net
params:
$STACK_NAME: { get_param: "OS::stack_name" }
private_subnet:
type: OS::Neutron::Subnet
properties:
name:
str_replace:
template: $STACK_NAME-private_subnet
params:
$STACK_NAME: { get_param: "OS::stack_name" }
network_id: { get_resource: private_net }
cidr: { get_param: private_net_cidr }
gateway_ip: { get_param: private_net_gateway }
allocation_pools:
- start: { get_param: private_net_pool_start }
end: { get_param: private_net_pool_end }
router:
type: OS::Neutron::Router
properties:
name:
str_replace:
template: $STACK_NAME-router
params:
$STACK_NAME: { get_param: "OS::stack_name" }
external_gateway_info:
network: { get_param: public_net }
router_interface:
type: OS::Neutron::RouterInterface
properties:
router_id: { get_resource: router }
subnet_id: { get_resource: private_subnet }
master_instance_private_subnet_port:
type: OS::Neutron::Port
properties:
network_id: { get_resource: private_net }
fixed_ips:
- subnet_id: { get_resource: private_subnet }
security_groups:
- { get_resource: security_group }
master_instance_floating_ip:
type: OS::Neutron::FloatingIP
properties:
floating_network: { get_param: public_net }
port_id: { get_resource: master_instance_private_subnet_port }
master_instance:
type: OS::Nova::Server
properties:
name:
str_replace:
template: $STACK_NAME-master_instance
params:
$STACK_NAME: { get_param: "OS::stack_name" }
image: { get_param: image }
flavor: { get_param: flavor }
key_name: { get_param: key_name }
networks:
- port: { get_resource: master_instance_private_subnet_port }
compute_instances:
type: OS::Heat::ResourceGroup
properties:
count: { get_param: count }
resource_def:
type: OS::Nova::Server
properties:
name:
str_replace:
template: $STACK_NAME-compute_instance-%index%
params:
$STACK_NAME: { get_param: "OS::stack_name" }
image: { get_param: image }
flavor: { get_param: flavor }
key_name: { get_param: key_name }
networks:
- subnet: { get_resource: private_subnet }
security_groups:
- { get_resource: security_group }
##
outputs:
master_instance_public_ip:
description: IP address of master_instance in public network
value: { get_attr: [master_instance_floating_ip, floating_ip_address] }
master_instance_private_ip:
description: IP address of master_instance in private network
value: { get_attr: [master_instance, first_address] }