44ef2a3ec1
The new master branch should point now to rocky. So, HOT templates should specify that they might contain features for rocky release [1] Also, this submission updates the yaml validation to use only latest heat_version alias. There are cases in which we will need to set the version for specific templates i.e. mixed versions, so there is added a variable to assign specific templates to specific heat_version aliases, avoiding the introductions of error by bulk replacing the the old version in new releases. [1]: https://docs.openstack.org/heat/latest/template_guide/hot_spec.html#rocky Change-Id: Ib17526d9cc453516d99d4659ee5fa51a5aa7fb4b
80 lines
1.5 KiB
YAML
80 lines
1.5 KiB
YAML
heat_template_version: rocky
|
|
|
|
parameters:
|
|
|
|
name:
|
|
type: string
|
|
default: ""
|
|
|
|
actions:
|
|
type: comma_delimited_list
|
|
default: ['CREATE', 'UPDATE']
|
|
|
|
server:
|
|
type: string
|
|
|
|
config:
|
|
type: string
|
|
|
|
input_values:
|
|
type: json
|
|
description: input values for the software deployments
|
|
default: {}
|
|
|
|
input_key:
|
|
type: string
|
|
default: 'get_input'
|
|
|
|
signal_transport:
|
|
type: string
|
|
default: 'CFN_SIGNAL'
|
|
|
|
input_values_validate:
|
|
type: string
|
|
default: 'LAX'
|
|
|
|
resources:
|
|
|
|
TripleODeployment:
|
|
type: OS::Heat::Value
|
|
properties:
|
|
value:
|
|
name: {get_param: name}
|
|
server: {get_param: server}
|
|
config: {get_param: config}
|
|
input_values: {get_param: input_values}
|
|
deployment: {get_resource: TripleOSoftwareDeployment}
|
|
|
|
TripleOSoftwareDeployment:
|
|
type: OS::Heat::StructuredDeployment
|
|
properties:
|
|
name: deployment_resource
|
|
config: {get_param: config}
|
|
server: {get_resource: TripleOServer}
|
|
input_values: {get_param: input_values}
|
|
signal_transport: NO_SIGNAL
|
|
actions: {get_param: actions}
|
|
|
|
TripleOServer:
|
|
type: OS::Heat::DeployedServer
|
|
properties:
|
|
name: server_resource
|
|
|
|
outputs:
|
|
|
|
deploy_status_code:
|
|
value: 0
|
|
deploy_stderr:
|
|
value: ''
|
|
deploy_stdout:
|
|
value: ''
|
|
show:
|
|
value: ''
|
|
|
|
update_managed_packages:
|
|
description: boolean value indicating whether to upgrade managed packages
|
|
value: false
|
|
hostname:
|
|
description: hostname
|
|
value: ''
|