diff --git a/chef/roles/ceph-mds.json b/chef/roles/ceph-mds.json new file mode 100644 index 0000000..5383145 --- /dev/null +++ b/chef/roles/ceph-mds.json @@ -0,0 +1,8 @@ +{ + "name": "ceph-mds", + "description": "Ceph Metadata Server", + "run_list": [ + "recipe[ceph::repo]", + "recipe[ceph::mds]" + ] +} diff --git a/chef/roles/ceph-mon.json b/chef/roles/ceph-mon.json new file mode 100644 index 0000000..10162ff --- /dev/null +++ b/chef/roles/ceph-mon.json @@ -0,0 +1,8 @@ +{ + "name": "ceph-mon", + "description": "Ceph Monitor", + "run_list": [ + "recipe[ceph::repo]", + "recipe[ceph::mon]" + ] +} diff --git a/chef/roles/ceph-osd.json b/chef/roles/ceph-osd.json new file mode 100644 index 0000000..e749490 --- /dev/null +++ b/chef/roles/ceph-osd.json @@ -0,0 +1,8 @@ +{ + "name": "ceph-osd", + "description": "Ceph Object Storage Device", + "run_list": [ + "recipe[ceph::repo]", + "recipe[ceph::osd]" + ] +} diff --git a/chef/roles/ceph-radosgw.json b/chef/roles/ceph-radosgw.json new file mode 100644 index 0000000..925d017 --- /dev/null +++ b/chef/roles/ceph-radosgw.json @@ -0,0 +1,8 @@ +{ + "name": "ceph-radosgw", + "description": "Ceph RADOS Gateway", + "run_list": [ + "recipe[ceph::repo]", + "recipe[ceph::radosgw]" + ] +} diff --git a/chef/roles/ceph-tgt.json b/chef/roles/ceph-tgt.json new file mode 100644 index 0000000..f5dce87 --- /dev/null +++ b/chef/roles/ceph-tgt.json @@ -0,0 +1,8 @@ +{ + "name": "ceph-tgt", + "description": "Ceph iSCSI Target", + "run_list": [ + "recipe[ceph::repo]", + "recipe[ceph::tgt]" + ] +}