tripleo-heat-templates/puppet/swift-storage-post.yaml

43 lines
1.0 KiB
YAML

heat_template_version: 2014-10-16
description: 'Swift Storage Post Deployment'
# NOTE: this is a noop for os-apply-config style deployments because
# post deployment ordering is controlled by tripleo-image-elements
parameters:
servers:
type: json
resources:
StoragePuppetConfig:
type: OS::Heat::SoftwareConfig
properties:
group: puppet
outputs:
- name: result
config:
get_file: manifests/overcloud_object.pp
StoragePuppetDeployment:
type: OS::Heat::StructuredDeployments
properties:
name: puppet_1
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
StorageRingbuilderPuppetDeployment:
type: OS::Heat::StructuredDeployments
properties:
name: puppet_2
servers: {get_param: servers}
config: {get_resource: StorageRingbuilderPuppetConfig}