Merge "Fix Malformed Table in Integration Tests doc"
[snaps.git] / snaps / openstack / tests / heat / floating_ip_heat_template.yaml
1 ##############################################################################
2 # Copyright (c) 2017 Cable Television Laboratories, Inc. ("CableLabs")
3 #                    and others.  All rights reserved.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at:
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 ##############################################################################
17 heat_template_version: 2015-04-30
18
19 description: >
20   Sample template with two VMs instantiated against different images and
21   flavors on the same network and the first one has a floating IP
22
23 parameters:
24   image1_name:
25     type: string
26     label: Image ID for first VM
27     description: Image name to be used for first instance
28     default: image_1
29   image2_name:
30     type: string
31     label: Image ID for second VM
32     description: Image name to be used for second instance
33     default: image_2
34   flavor1_name:
35     type: string
36     label: Instance Flavor for first VM
37     description: Flavor name for the first instance
38     default: m1.small
39   flavor2_name:
40     type: string
41     label: Instance Flavor for second VM
42     description: Flavor name for the second instance
43     default: m1.med
44   net_name:
45     type: string
46     label: Test network name
47     description: The name of the stack's network
48     default: test_net
49   subnet_name:
50     type: string
51     label: Test subnet name
52     description: The name of the stack's subnet
53     default: test_subnet
54   router_name:
55     type: string
56     label: Test router name
57     description: The name of the stack's router
58     default: mgmt_router
59   keypair_name:
60     type: string
61     label: Keypair name
62     description: The name of the stack's keypair
63     default: keypair_name
64   security_group_name:
65     type: string
66     label: Security Group name
67     description: The name of the stack's security group
68     default: security_group_name
69   inst1_name:
70     type: string
71     label: First VM name
72     description: The name of the first VM to be spawned
73     default: test_vm1
74   inst2_name:
75     type: string
76     label: Second VM name
77     description: The name of the second VM to be spawned
78     default: test_vm2
79   external_net_name:
80     type: string
81     description: Name of the external network which management network will connect to
82     default: external
83
84 resources:
85   flavor1:
86     type: OS::Nova::Flavor
87     properties:
88       ram: 1024
89       vcpus: 2
90       disk: 2
91   flavor2:
92     type: OS::Nova::Flavor
93     properties:
94       ram: 1024
95       vcpus: 2
96       disk: 2
97
98   network:
99     type: OS::Neutron::Net
100     properties:
101       name: { get_param: net_name }
102
103   subnet:
104     type: OS::Neutron::Subnet
105     properties:
106       name: { get_param: subnet_name }
107       ip_version: 4
108       cidr: 10.1.2.0/24
109       network: { get_resource: network }
110
111   management_router:
112     type: OS::Neutron::Router
113     properties:
114       name: { get_param: router_name }
115       external_gateway_info:
116         network: { get_param: external_net_name }
117
118   management_router_interface:
119     type: OS::Neutron::RouterInterface
120     properties:
121       router: { get_resource: management_router }
122       subnet: { get_resource: subnet }
123
124   server_security_group:
125     type: OS::Neutron::SecurityGroup
126     properties:
127       description: Add security group rules for server
128       name: { get_param: security_group_name }
129       rules:
130         - remote_ip_prefix: 0.0.0.0/0
131           protocol: tcp
132           port_range_min: 22
133           port_range_max: 22
134         - remote_ip_prefix: 0.0.0.0/0
135           protocol: icmp
136
137   floating_ip:
138     type: OS::Neutron::FloatingIP
139     properties:
140       floating_network: { get_param: external_net_name }
141
142   floating_ip_association:
143     type: OS::Nova::FloatingIPAssociation
144     properties:
145       floating_ip: { get_resource: floating_ip }
146       server_id: {get_resource: vm1}
147
148   keypair:
149     type: OS::Nova::KeyPair
150     properties:
151       name: { get_param: keypair_name }
152       save_private_key: True
153
154   vm1:
155     type: OS::Nova::Server
156     depends_on: [subnet, keypair, flavor1]
157     properties:
158       name: { get_param: inst1_name }
159       image: { get_param: image1_name }
160       flavor: { get_resource: flavor1 }
161       key_name: {get_resource: keypair}
162       security_groups: [{ get_resource: server_security_group }]
163       networks:
164         - network: { get_resource: network }
165
166   vm2:
167     type: OS::Nova::Server
168     depends_on: [subnet, flavor2]
169     properties:
170       name: { get_param: inst2_name }
171       image: { get_param: image2_name }
172       flavor: { get_resource: flavor2 }
173       key_name: {get_resource: keypair}
174       networks:
175         - network: { get_resource: network }
176
177 outputs:
178   private_key:
179     description: "SSH Private Key"
180     value: { get_attr: [ keypair, private_key ]}