Merge "Added method to return OpenStackVmInstance from Heat."
[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   inst1_name:
65     type: string
66     label: First VM name
67     description: The name of the first VM to be spawned
68     default: test_vm1
69   inst2_name:
70     type: string
71     label: Second VM name
72     description: The name of the second VM to be spawned
73     default: test_vm2
74   external_net_name:
75     type: string
76     description: Name of the external network which management network will connect to
77     default: external
78
79 resources:
80   flavor1:
81     type: OS::Nova::Flavor
82     properties:
83       ram: 4096
84       vcpus: 4
85       disk: 4
86   flavor2:
87     type: OS::Nova::Flavor
88     properties:
89       ram: 4096
90       vcpus: 4
91       disk: 4
92
93   network:
94     type: OS::Neutron::Net
95     properties:
96       name: { get_param: net_name }
97
98   subnet:
99     type: OS::Neutron::Subnet
100     properties:
101       name: { get_param: subnet_name }
102       ip_version: 4
103       cidr: 10.1.2.0/24
104       network: { get_resource: network }
105
106   management_router:
107     type: OS::Neutron::Router
108     properties:
109       name: { get_param: router_name }
110       external_gateway_info:
111         network: { get_param: external_net_name }
112
113   management_router_interface:
114     type: OS::Neutron::RouterInterface
115     properties:
116       router: { get_resource: management_router }
117       subnet: { get_resource: subnet }
118
119   floating_ip:
120     type: OS::Neutron::FloatingIP
121     properties:
122       floating_network: { get_param: external_net_name }
123
124   floating_ip_association:
125     type: OS::Nova::FloatingIPAssociation
126     properties:
127       floating_ip: { get_resource: floating_ip }
128       server_id: {get_resource: vm1}
129
130   keypair:
131     type: OS::Nova::KeyPair
132     properties:
133       name: { get_param: keypair_name }
134       save_private_key: True
135
136   vm1:
137     type: OS::Nova::Server
138     depends_on: [subnet, keypair, flavor1]
139     properties:
140       name: { get_param: inst1_name }
141       image: { get_param: image1_name }
142       flavor: { get_resource: flavor1 }
143       key_name: {get_resource: keypair}
144       networks:
145         - network: { get_resource: network }
146
147   vm2:
148     type: OS::Nova::Server
149     depends_on: [subnet, flavor2]
150     properties:
151       name: { get_param: inst2_name }
152       image: { get_param: image2_name }
153       flavor: { get_resource: flavor2 }
154       key_name: {get_resource: keypair}
155       networks:
156         - network: { get_resource: network }
157
158 outputs:
159   private_key:
160     description: "SSH Private Key"
161     value: { get_attr: [ keypair, private_key ]}