75071d1ccc
This patch renames misleading rally-scenarios to rally-jobs. rally-jobs describes much better purpose of this directory Add readme files that describes structure and meanings of files and directories Change-Id: I8f5a2816186a2cafd251981ba7ad50e631e548f5 Closes-bug: #1395502
54 lines
1.1 KiB
Plaintext
54 lines
1.1 KiB
Plaintext
heat_template_version: 2013-05-23
|
|
|
|
parameters:
|
|
# set all correct defaults for parameters before launch test
|
|
public_net:
|
|
type: string
|
|
default: public
|
|
image:
|
|
type: string
|
|
default: cirros-0.3.2-x86_64-uec
|
|
flavor:
|
|
type: string
|
|
default: m1.tiny
|
|
cidr:
|
|
type: string
|
|
default: 11.11.11.0/24
|
|
|
|
resources:
|
|
server:
|
|
type: OS::Nova::Server
|
|
properties:
|
|
image: {get_param: image}
|
|
flavor: {get_param: flavor}
|
|
networks:
|
|
- port: { get_resource: server_port }
|
|
|
|
router:
|
|
type: OS::Neutron::Router
|
|
properties:
|
|
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 }
|
|
|
|
private_net:
|
|
type: OS::Neutron::Net
|
|
|
|
private_subnet:
|
|
type: OS::Neutron::Subnet
|
|
properties:
|
|
network: { get_resource: private_net }
|
|
cidr: {get_param: cidr}
|
|
|
|
server_port:
|
|
type: OS::Neutron::Port
|
|
properties:
|
|
network: {get_resource: private_net}
|
|
fixed_ips:
|
|
- subnet_id: { get_resource: private_subnet }
|