heat-templates/hot/lb_server.yaml
Thomas Herve bc081a1031 Fix alarm metadata in new autoscaling template
The new autoscaling template used old implicit metadata for creating
alarm: the patch fixes that by properly passing a new value to both the
alarms and the servers.

Change-Id: Ia5d99dd08cf02954ce78ef661fbe9f627948f9db
2014-04-04 09:18:31 +02:00

37 lines
896 B
YAML

heat_template_version: 2013-05-23
description: A load-balancer server
parameters:
image:
type: string
description: Image used for servers
key_name:
type: string
description: SSH key to connect to the servers
flavor:
type: string
description: flavor used by the servers
pool_id:
type: string
description: Pool to contact
user_data:
type: string
description: Server user_data
metadata:
type: json
resources:
server:
type: OS::Nova::Server
properties:
flavor: {get_param: flavor}
image: {get_param: image}
key_name: {get_param: key_name}
metadata: {get_param: metadata}
user_data: {get_param: user_data}
user_data_format: RAW
member:
type: OS::Neutron::PoolMember
properties:
pool_id: {get_param: pool_id}
address: {get_attr: [server, first_address]}
protocol_port: 80