Merge "Allow vncproxy to work with ssl enabled"
[apex-tripleo-heat-templates.git] / puppet / cinder-storage-post.yaml
1 heat_template_version: 2015-04-30
2 description: 'OpenStack cinder storage post deployment for Puppet'
3
4 parameters:
5   ConfigDebug:
6     default: false
7     description: Whether to run config management (e.g. Puppet) in debug mode.
8     type: boolean
9   servers:
10     type: json
11   NodeConfigIdentifiers:
12      type: json
13      description: Value which changes if the node configuration may need to be re-applied
14
15 resources:
16
17   VolumePuppetConfig:
18     type: OS::Heat::SoftwareConfig
19     properties:
20       group: puppet
21       options:
22         enable_debug: {get_param: ConfigDebug}
23       outputs:
24       - name: result
25       config:
26         get_file: manifests/overcloud_volume.pp
27
28   VolumeDeployment_Step1:
29     type: OS::Heat::StructuredDeployments
30     properties:
31       name: VolumeDeployment_Step1
32       servers:  {get_param: servers}
33       config: {get_resource: VolumePuppetConfig}
34
35   # Note, this should come last, so use depends_on to ensure
36   # this is created after any other resources.
37   ExtraConfig:
38     depends_on: VolumeDeployment_Step1
39     type: OS::TripleO::NodeExtraConfigPost
40     properties:
41         servers: {get_param: servers}