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
|
##
## Copyright (c) 2010-2017 Intel Corporation
##
## Licensed under the Apache License, Version 2.0 (the "License");
## you may not use this file except in compliance with the License.
## You may obtain a copy of the License at
##
## http://www.apache.org/licenses/LICENSE-2.0
##
## Unless required by applicable law or agreed to in writing, software
## distributed under the License is distributed on an "AS IS" BASIS,
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## See the License for the specific language governing permissions and
## limitations under the License.
##
heat_template_version: 2016-04-08
description: RAPID stack (Rapid Automated Performance Indication for Dataplane)
parameters:
image:
type: string
label: Image name or ID
description: Image to be used for compute instance
default: RapidVM
flavor:
type: string
label: Flavor
description: Type of instance (flavor) to be used
default: prox_flavor
key:
type: string
label: Key name
description: Name of key-pair to be used for compute instance
default: prox
dataplane_network:
type: string
label: Private network name or ID
description: Network to attach instance to.
default: dataplane-network
admin_network:
type: string
label: Private network name or ID
description: Network to attach instance to.
default: admin_internal_net
floating_network:
type: string
label: Floating network name or ID
description: Public Network to attach instance to.
default: admin_floating_net
availability_zone:
type: string
description: The Availability Zone to launch the instance.
default: nova
resources:
sut_admin_port:
type: OS::Neutron::Port
properties:
network: {get_param: admin_network}
security_groups:
- default
sut_dataplane_port:
type: OS::Neutron::Port
properties:
network: {get_param: dataplane_network}
security_groups:
- default
sut_floating_ip:
type: OS::Neutron::FloatingIP
properties:
floating_network: {get_param: floating_network}
port_id: {get_resource: sut_admin_port}
sut:
type: OS::Nova::Server
properties:
availability_zone: { get_param: availability_zone }
user_data:
get_file: prox_user_data.sh
key_name: { get_param: key }
image: { get_param: image }
flavor: { get_param: flavor }
networks:
- port: {get_resource: sut_admin_port}
- port: {get_resource: sut_dataplane_port}
gen_admin_port:
type: OS::Neutron::Port
properties:
network: {get_param: admin_network}
security_groups:
- default
gen_dataplane_port:
type: OS::Neutron::Port
properties:
network: {get_param: dataplane_network}
security_groups:
- default
gen_floating_ip:
type: OS::Neutron::FloatingIP
properties:
floating_network: {get_param: floating_network}
port_id: {get_resource: gen_admin_port}
gen:
type: OS::Nova::Server
properties:
availability_zone: { get_param: availability_zone }
user_data:
get_file: prox_user_data.sh
key_name: { get_param: key }
image: { get_param: image }
flavor: { get_param: flavor }
networks:
- port: {get_resource: gen_admin_port}
- port: {get_resource: gen_dataplane_port}
outputs:
sut_private_ip:
description: IP address of the sut admin port
value: { get_attr: [sut_admin_port, fixed_ips, 0, ip_address] }
sut_public_ip:
description: Floating IP address of sut in public network
value: { get_attr: [ sut_floating_ip, floating_ip_address ] }
sut_dataplane_ip:
description: IP address of sut dataplane port
value: { get_attr: [sut_dataplane_port, fixed_ips, 0, ip_address] }
sut_dataplane_mac:
description: The MAC address of the sut dataplane port
value: { get_attr: [sut_dataplane_port, mac_address] }
gen_private_ip:
description: IP address of the gen admin port
value: { get_attr: [gen_admin_port, fixed_ips, 0, ip_address] }
gen_public_ip:
description: Floating IP address of gen in public network
value: { get_attr: [ gen_floating_ip, floating_ip_address ] }
gen_dataplane_ip:
description: IP address of gen dataplane port
value: { get_attr: [gen_dataplane_port, fixed_ips, 0, ip_address] }
gen_dataplane_mac:
description: The MAC address of the gen dataplane port
value: { get_attr: [gen_dataplane_port, mac_address] }
|