compass-core/plugins/chef_installer/role/ceph.conf
Carl Li 138f045411 Seperate chef installer as a plugin
Bug: 1506700

This is the first change list of a series of changes that will eventually
convert chef installer as a plugin.
It moves chef installer related configure files to the plugins/chef_installer/
util.py's load_configs is modified to read not only the ordinary configs but
also the configs in each of plugins directory.

Change-Id: I285c59556f4abd89255608e15117e6d012ecfb01
2015-10-15 20:41:00 -07:00

22 lines
501 B
Plaintext
Executable File

ADAPTER_NAME = 'ceph_firefly'
ROLES = [
{
'role': 'ceph-mon',
'display_name': 'Ceph Mon',
'description': 'ceph monitor server'
}, {
'role': 'ceph-osd',
'display_name': 'Ceph OSD',
'description': 'ceph storage server'
}, {
'role': 'ceph-mds',
'display_name': 'Ceph MDS',
'description': 'ceph metadata server',
'optional': True
}, {
'role': 'ceph-radosgw',
'display_name': 'Ceph Radosgw',
'description': 'ceph object gateway',
'optional': True
}]