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
49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
heat_template_version: 2015-04-30
|
|
description: 'OpenStack swift storage node post deployment for Puppet'
|
|
|
|
parameters:
|
|
servers:
|
|
type: json
|
|
|
|
resources:
|
|
|
|
StoragePuppetConfig:
|
|
type: OS::Heat::SoftwareConfig
|
|
properties:
|
|
group: puppet
|
|
outputs:
|
|
- name: result
|
|
config:
|
|
get_file: manifests/overcloud_object.pp
|
|
|
|
StorageDeployment_Step1:
|
|
type: OS::Heat::StructuredDeployments
|
|
properties:
|
|
servers: {get_param: servers}
|
|
config: {get_resource: StoragePuppetConfig}
|
|
|
|
StorageRingbuilderPuppetConfig:
|
|
type: OS::Heat::SoftwareConfig
|
|
properties:
|
|
group: puppet
|
|
outputs:
|
|
- name: result
|
|
config:
|
|
get_file: manifests/ringbuilder.pp
|
|
|
|
StorageRingbuilderDeployment_Step2:
|
|
type: OS::Heat::StructuredDeployments
|
|
depends_on: StorageDeployment_Step1
|
|
properties:
|
|
servers: {get_param: servers}
|
|
config: {get_resource: StorageRingbuilderPuppetConfig}
|
|
|
|
# Note, this should come last, so use depends_on to ensure
|
|
# this is created after any other resources.
|
|
ExtraConfig:
|
|
depends_on: StorageRingbuilderDeployment_Step2
|
|
type: OS::TripleO::NodeExtraConfigPost
|
|
properties:
|
|
servers: {get_param: servers}
|
|
|