b56c2f01bd
This patch bumps the HOT version for the overcloud to Kilo 2015-04-30. We should have already done this since we are making use of OS::stack_id (a kilo feature) in some of the nested stacks. Also, this will give us access to the new repeat function as well. Change-Id: Ic534e5aeb03bd53296dc4d98c2ac5971464d7fe4
28 lines
640 B
YAML
28 lines
640 B
YAML
heat_template_version: 2015-04-30
|
|
description: 'Bootstrap Config Puppet'
|
|
|
|
parameters:
|
|
bootstrap_nodeid:
|
|
type: string
|
|
bootstrap_nodeid_ip:
|
|
type: string
|
|
|
|
resources:
|
|
|
|
BootstrapNodeConfigImpl:
|
|
type: OS::Heat::StructuredConfig
|
|
properties:
|
|
config:
|
|
hiera:
|
|
datafiles:
|
|
bootstrap_node:
|
|
mapped_data:
|
|
bootstrap_nodeid: {get_param: bootstrap_nodeid}
|
|
bootstrap_nodeid_ip: {get_param: bootstrap_nodeid_ip}
|
|
|
|
outputs:
|
|
config_id:
|
|
description: The ID of the BootstrapNodeConfigImpl resource.
|
|
value:
|
|
{get_resource: BootstrapNodeConfigImpl}
|