03aa8b10f6
For config-download we create a set of dummy DeployedServer resources that has default software_config_transport property (POLL_SERVER_CFN) which unnecessarily creates ec2 credentials for these resources. We've dropped heat_cfn service from undercloud, so change these to use POLL_SERVER_HEAT instead. Change-Id: Ia86d117299e92e121a69e059b8a8460ef986cdca
81 lines
1.5 KiB
YAML
81 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
|
|
software_config_transport: POLL_SERVER_HEAT
|
|
|
|
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: ''
|