hello,to unknown reasons to me does not create a keyring for osd here is an example site.pp
node 'ceph-mds1.test' {
class { 'ceph_mds': id => 1 }
node 'ceph-mon0.test' {
if !empty($::ceph_admin_key) {
@@ceph::key { 'admin':
secret => $::ceph_admin_key,
keyring_path => '/etc/ceph/keyring',
}
}
class { 'role_ceph_mon': id => 0 }
}
node 'ceph-mon1.test' {
class { 'role_ceph_mon': id => 1 }
}
node 'tnode01' {
class { 'role_ceph':
fsid => $::fsid,
auth_type => 'cephx',
}
class { 'ceph::osd' :
public_address => $ipaddress_eth0,
cluster_address => $ipaddress_eth0,
}
ceph::osd::device { '/dev/sdb': }
}
hello,to unknown reasons to me does not create a keyring for osd here is an example site.pp