add ceph roles

Change-Id: I79c556f1510062d65a546779d5829c4d8ed5176e
This commit is contained in:
grace.yu 2014-10-03 17:37:33 -07:00
parent 70e4160abd
commit b8fd970ed4
5 changed files with 40 additions and 0 deletions

8
chef/roles/ceph-mds.json Normal file
View File

@ -0,0 +1,8 @@
{
"name": "ceph-mds",
"description": "Ceph Metadata Server",
"run_list": [
"recipe[ceph::repo]",
"recipe[ceph::mds]"
]
}

8
chef/roles/ceph-mon.json Normal file
View File

@ -0,0 +1,8 @@
{
"name": "ceph-mon",
"description": "Ceph Monitor",
"run_list": [
"recipe[ceph::repo]",
"recipe[ceph::mon]"
]
}

8
chef/roles/ceph-osd.json Normal file
View File

@ -0,0 +1,8 @@
{
"name": "ceph-osd",
"description": "Ceph Object Storage Device",
"run_list": [
"recipe[ceph::repo]",
"recipe[ceph::osd]"
]
}

View File

@ -0,0 +1,8 @@
{
"name": "ceph-radosgw",
"description": "Ceph RADOS Gateway",
"run_list": [
"recipe[ceph::repo]",
"recipe[ceph::radosgw]"
]
}

8
chef/roles/ceph-tgt.json Normal file
View File

@ -0,0 +1,8 @@
{
"name": "ceph-tgt",
"description": "Ceph iSCSI Target",
"run_list": [
"recipe[ceph::repo]",
"recipe[ceph::tgt]"
]
}