aboutsummaryrefslogtreecommitdiffstats
path: root/puppet/cinder-storage-post.yaml
diff options
context:
space:
mode:
authorGiulio Fidente <gfidente@redhat.com>2016-05-30 16:47:11 +0200
committerKeith Schincke <keith.schincke@gmail.com>2016-06-29 21:56:17 -0400
commitfa08aaf4a7752ed1749e0b69673acdb271a1c5b0 (patch)
tree1ffb52b3c447d29b400eee02096834f7f7af3186 /puppet/cinder-storage-post.yaml
parent463333ccc7a33db21157db49b69c37a4b04593d9 (diff)
Configure BlockStorage services via resource chains
Wires the steps into the BlockStorage role and ensures the installed-packages list is written on a per-step basis on all roles, as it happens on the controllers already. Change-Id: Iaec8ad3b2afbef6d586b7b46abaa1434cdb62f41
Diffstat (limited to 'puppet/cinder-storage-post.yaml')
-rw-r--r--puppet/cinder-storage-post.yaml45
1 files changed, 41 insertions, 4 deletions
diff --git a/puppet/cinder-storage-post.yaml b/puppet/cinder-storage-post.yaml
index f470203f..fa1516f1 100644
--- a/puppet/cinder-storage-post.yaml
+++ b/puppet/cinder-storage-post.yaml
@@ -11,6 +11,10 @@ parameters:
NodeConfigIdentifiers:
type: json
description: Value which changes if the node configuration may need to be re-applied
+ StepConfig:
+ type: string
+ description: Config manifests that will be used to step through the deployment.
+ default: ''
resources:
@@ -32,22 +36,55 @@ resources:
group: puppet
options:
enable_debug: {get_param: ConfigDebug}
+ enable_hiera: True
+ enable_facter: False
+ inputs:
+ - name: step
outputs:
- name: result
config:
- get_file: manifests/overcloud_volume.pp
+ list_join:
+ - ''
+ - - get_file: manifests/overcloud_volume.pp
+ - {get_param: StepConfig}
- VolumeDeployment_Step1:
+ VolumeDeployment_Step2:
type: OS::Heat::StructuredDeployments
+ depends_on: VolumeArtifactsDeploy
properties:
- name: VolumeDeployment_Step1
+ name: VolumeDeployment_Step2
servers: {get_param: servers}
config: {get_resource: VolumePuppetConfig}
+ input_values:
+ step: 2
+ update_identifier: {get_param: NodeConfigIdentifiers}
+
+ VolumeDeployment_Step3:
+ type: OS::Heat::StructuredDeployments
+ depends_on: VolumeDeployment_Step2
+ properties:
+ name: VolumeDeployment_Step3
+ servers: {get_param: servers}
+ config: {get_resource: VolumePuppetConfig}
+ input_values:
+ step: 3
+ update_identifier: {get_param: NodeConfigIdentifiers}
+
+ VolumeDeployment_Step4:
+ type: OS::Heat::StructuredDeployments
+ depends_on: VolumeDeployment_Step3
+ properties:
+ name: VolumeDeployment_Step4
+ servers: {get_param: servers}
+ config: {get_resource: VolumePuppetConfig}
+ input_values:
+ step: 4
+ update_identifier: {get_param: NodeConfigIdentifiers}
# Note, this should come last, so use depends_on to ensure
# this is created after any other resources.
ExtraConfig:
- depends_on: VolumeDeployment_Step1
+ depends_on: VolumeDeployment_Step4
type: OS::TripleO::NodeExtraConfigPost
properties:
servers: {get_param: servers}