aboutsummaryrefslogtreecommitdiffstats
path: root/puppet/ceph-storage-post-puppet.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/ceph-storage-post-puppet.yaml')
-rw-r--r--puppet/ceph-storage-post-puppet.yaml24
1 files changed, 24 insertions, 0 deletions
diff --git a/puppet/ceph-storage-post-puppet.yaml b/puppet/ceph-storage-post-puppet.yaml
new file mode 100644
index 00000000..dd01d4fd
--- /dev/null
+++ b/puppet/ceph-storage-post-puppet.yaml
@@ -0,0 +1,24 @@
+heat_template_version: 2014-10-16
+
+description: >
+ OpenStack Ceph Storage node post deployment for Puppet.
+
+parameters:
+ servers:
+ type: json
+
+resources:
+ CephStoragePuppetConfig:
+ type: OS::Heat::SoftwareConfig
+ properties:
+ group: puppet
+ outputs:
+ - name: result
+ config:
+ get_file: manifests/overcloud_cephstorage.pp
+
+ CephStoragePuppetDeployment:
+ type: OS::Heat::StructuredDeployments
+ properties:
+ servers: {get_param: servers}
+ config: {get_resource: CephStoragePuppetConfig}