
The new master branch should point now to queens instead of pike. So, HOT templates should specify that they might contain features for queens release [1] [1]: https://docs.openstack.org/heat/latest/template_guide/hot_spec.html#queens Change-Id: I7654d1c59db0c4508a9d7045f452612d22493004
19 lines
402 B
YAML
19 lines
402 B
YAML
heat_template_version: queens
|
|
description: 'Extra Pre-Deployment Config, multiple'
|
|
parameters:
|
|
server:
|
|
type: string
|
|
|
|
resources:
|
|
|
|
CinderNetappConfig:
|
|
type: cinder-netapp.yaml
|
|
properties:
|
|
server: {get_param: server}
|
|
|
|
# Note depends_on may be used for serialization if ordering is important
|
|
OtherConfig:
|
|
type: other.yaml
|
|
properties:
|
|
server: {get_param: server}
|