puppet-openstack-integration/manifests/ceph.pp
Emilien Macchi 9c942a604e Deploy Ceph on scenario001
Deploy a simple Ceph setup on scenario001 with one mon and one osd.

Change-Id: I816f763c9ac89f62304c955184daf1e5a4406c3c
2016-02-01 13:39:44 +01:00

17 lines
430 B
Puppet

class openstack_integration::ceph {
class { '::ceph':
fsid => '7200aea0-2ddd-4a32-aa2a-d49f66ab554c',
mon_host => '127.0.0.1',
authentication_type => 'none',
osd_pool_default_size => '1',
osd_pool_default_min_size => '1',
}
ceph::mon { 'mon1':
public_addr => '127.0.0.1',
authentication_type => 'none',
}
ceph::osd { '/srv/data': }
}