19e84384e6
images are updated from time to time image name should not be hardcoded in heat template. get it from glance the same way instance creating in tests is done Change-Id: I1fbd0c2465979f4efa3da437f204eddb2decba9d
20 lines
348 B
YAML
20 lines
348 B
YAML
heat_template_version: 2013-05-23
|
|
|
|
description: |
|
|
The heat template is used to demo
|
|
|
|
parameters:
|
|
image:
|
|
type: string
|
|
default: cirros-0.3.6-x86_64-disk
|
|
|
|
resources:
|
|
rg:
|
|
type: OS::Heat::ResourceGroup
|
|
properties:
|
|
count: 1
|
|
resource_def:
|
|
type: server.yaml
|
|
properties:
|
|
image: {get_param: image}
|