blob: 05f4c0b597cf4d3c080106d926a2551230cb1f56 (
plain)
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
|
##############################################################################
# Copyright (c) 2017 ZTE Corporation and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
heat_template_version: 2015-04-30
description: >
Used to run VMs for Qtip
parameters:
image:
type: string
description: Name of the image
default: QTIP_CentOS
external_net_name:
type: string
description: Name of the external network which management network will connect to
default: admin_floating_net
resources:
flavor:
type: OS::Nova::Flavor
properties:
ram: 8192
vcpus: 8
disk: 80
network:
type: OS::Neutron::Net
properties:
name: qtip_net
subnet:
type: OS::Neutron::Subnet
properties:
name: qtip_subnet
ip_version: 4
cidr: 192.168.0.0/24
network: { get_resource: network }
dns_nameservers: [8.8.8.8]
management_router:
type: OS::Neutron::Router
properties:
name: qtip_router
external_gateway_info:
network: { get_param: external_net_name }
management_router_interface:
type: OS::Neutron::RouterInterface
properties:
router: { get_resource: management_router }
subnet: { get_resource: subnet }
security_group:
type: OS::Neutron::SecurityGroup
properties:
name: qtip_security_group
rules:
- port_range_min: 22
port_range_max: 5201
protocol: tcp
- port_range_min: 22
port_range_max: 5201
protocol: udp
- protocol: icmp
outputs:
description: 'none'
|