From 44a22fc61e24c2efc221edd7085c8f4d44b39fc0 Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Sun, 1 Feb 2015 18:52:18 -0500 Subject: Puppet: First support Ceph This is a first implementation of Ceph support in TripleO with Puppet: * Install ceph-mon on controller node * Install ceph-osd on cephstorage node Co-Authored-By: Giulio Fidente Change-Id: I48488cbe950047fae5e746e458106d6edb9a6183 --- puppet/ceph-storage-post-puppet.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 puppet/ceph-storage-post-puppet.yaml (limited to 'puppet/ceph-storage-post-puppet.yaml') 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} -- cgit 1.2.3-korg