feat: add ceph osd/mds/mon roles

- basic roles currently
- will allow build of ceph to begin
This commit is contained in:
Ben Vincent 2023-11-02 20:12:47 +11:00
parent 89653912cb
commit 5076d7383a
3 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,6 @@
# a role to deploy the ceph mds
# work in progress
class roles::ceph::mds {
include profiles::defaults
include profiles::base
}

View File

@ -0,0 +1,6 @@
# a role to deploy the ceph mon
# work in progress
class roles::ceph::mon {
include profiles::defaults
include profiles::base
}

View File

@ -0,0 +1,6 @@
# a role to deploy the ceph osd
# work in progress
class roles::ceph::osd {
include profiles::defaults
include profiles::base
}