2017-12-01 21:25:13 +08:00
|
|
|
#!/usr/bin/python
|
|
|
|
import datetime
|
|
|
|
|
|
|
|
ANSIBLE_METADATA = {
|
|
|
|
'metadata_version': '1.0',
|
|
|
|
'status': ['preview'],
|
|
|
|
'supported_by': 'community'
|
|
|
|
}
|
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: ceph_volume
|
|
|
|
|
|
|
|
short_description: Create ceph OSDs with ceph-volume
|
|
|
|
|
|
|
|
description:
|
|
|
|
- Using the ceph-volume utility available in Ceph this module
|
|
|
|
can be used to create ceph OSDs that are backed by logical volumes.
|
|
|
|
- Only available in ceph versions luminous or greater.
|
|
|
|
|
|
|
|
options:
|
2017-12-01 22:40:33 +08:00
|
|
|
cluster:
|
|
|
|
description:
|
|
|
|
- The ceph cluster name.
|
|
|
|
required: false
|
|
|
|
default: ceph
|
2017-12-01 21:25:13 +08:00
|
|
|
objectstore:
|
|
|
|
description:
|
|
|
|
- The objectstore of the OSD, either filestore or bluestore
|
|
|
|
required: true
|
|
|
|
choices: ['bluestore', 'filestore']
|
2018-03-14 23:14:21 +08:00
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- The objectstore of the OSD, either filestore or bluestore
|
|
|
|
required: true
|
|
|
|
choices: ['present', 'absent']
|
|
|
|
default: present
|
2017-12-01 21:25:13 +08:00
|
|
|
data:
|
|
|
|
description:
|
|
|
|
- The logical volume name or device to use for the OSD data.
|
|
|
|
required: true
|
|
|
|
data_vg:
|
|
|
|
description:
|
|
|
|
- If data is a lv, this must be the name of the volume group it belongs to.
|
|
|
|
required: false
|
|
|
|
journal:
|
|
|
|
description:
|
|
|
|
- The logical volume name or partition to use as a filestore journal.
|
|
|
|
- Only applicable if objectstore is 'filestore'.
|
|
|
|
required: false
|
|
|
|
journal_vg:
|
|
|
|
description:
|
|
|
|
- If journal is a lv, this must be the name of the volume group it belongs to.
|
|
|
|
- Only applicable if objectstore is 'filestore'.
|
|
|
|
required: false
|
|
|
|
db:
|
|
|
|
description:
|
|
|
|
- A partition or logical volume name to use for block.db.
|
|
|
|
- Only applicable if objectstore is 'bluestore'.
|
|
|
|
required: false
|
|
|
|
db_vg:
|
|
|
|
description:
|
|
|
|
- If db is a lv, this must be the name of the volume group it belongs to.
|
|
|
|
- Only applicable if objectstore is 'bluestore'.
|
|
|
|
required: false
|
|
|
|
wal:
|
|
|
|
description:
|
|
|
|
- A partition or logical volume name to use for block.wal.
|
|
|
|
- Only applicable if objectstore is 'bluestore'.
|
|
|
|
required: false
|
|
|
|
wal_vg:
|
|
|
|
description:
|
|
|
|
- If wal is a lv, this must be the name of the volume group it belongs to.
|
|
|
|
- Only applicable if objectstore is 'bluestore'.
|
|
|
|
required: false
|
2018-01-12 00:56:39 +08:00
|
|
|
crush_device_class:
|
|
|
|
description:
|
|
|
|
- Will set the crush device class for the OSD.
|
|
|
|
required: false
|
2018-01-19 23:43:48 +08:00
|
|
|
dmcrypt:
|
|
|
|
description:
|
|
|
|
- If set to True the OSD will be encrypted with dmcrypt.
|
|
|
|
required: false
|
2017-12-01 21:25:13 +08:00
|
|
|
|
|
|
|
|
|
|
|
author:
|
|
|
|
- Andrew Schoen (@andrewschoen)
|
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
|
|
|
- name: set up a filestore osd with an lv data and a journal partition
|
|
|
|
ceph_volume:
|
|
|
|
objectstore: filestore
|
|
|
|
data: data-lv
|
|
|
|
data_vg: data-vg
|
|
|
|
journal: /dev/sdc1
|
|
|
|
|
|
|
|
- name: set up a bluestore osd with a raw device for data
|
|
|
|
ceph_volume:
|
|
|
|
objectstore: bluestore
|
|
|
|
data: /dev/sdc
|
|
|
|
|
|
|
|
- name: set up a bluestore osd with an lv for data and partitions for block.wal and block.db
|
|
|
|
ceph_volume:
|
|
|
|
objectstore: bluestore
|
|
|
|
data: data-lv
|
|
|
|
data_vg: data-vg
|
|
|
|
db: /dev/sdc1
|
|
|
|
wal: /dev/sdc2
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
|
|
|
|
|
2017-12-02 03:26:36 +08:00
|
|
|
def get_data(data, data_vg):
|
|
|
|
if data_vg:
|
|
|
|
data = "{0}/{1}".format(data_vg, data)
|
|
|
|
return data
|
|
|
|
|
|
|
|
|
|
|
|
def get_journal(journal, journal_vg):
|
|
|
|
if journal_vg:
|
|
|
|
journal = "{0}/{1}".format(journal_vg, journal)
|
|
|
|
return journal
|
|
|
|
|
|
|
|
|
|
|
|
def get_db(db, db_vg):
|
|
|
|
if db_vg:
|
|
|
|
db = "{0}/{1}".format(db_vg, db)
|
|
|
|
return db
|
|
|
|
|
|
|
|
|
|
|
|
def get_wal(wal, wal_vg):
|
|
|
|
if wal_vg:
|
|
|
|
wal = "{0}/{1}".format(wal_vg, wal)
|
|
|
|
return wal
|
|
|
|
|
|
|
|
|
2017-12-01 21:25:13 +08:00
|
|
|
def run_module():
|
|
|
|
module_args = dict(
|
2017-12-01 22:40:33 +08:00
|
|
|
cluster=dict(type='str', required=False, default='ceph'),
|
2017-12-01 21:25:13 +08:00
|
|
|
objectstore=dict(type='str', required=True),
|
2018-03-14 23:14:21 +08:00
|
|
|
state=dict(type='str', required=True, choices=['present', 'absent'], default='present'),
|
2017-12-01 21:25:13 +08:00
|
|
|
data=dict(type='str', required=True),
|
|
|
|
data_vg=dict(type='str', required=False),
|
|
|
|
journal=dict(type='str', required=False),
|
|
|
|
journal_vg=dict(type='str', required=False),
|
|
|
|
db=dict(type='str', required=False),
|
|
|
|
db_vg=dict(type='str', required=False),
|
|
|
|
wal=dict(type='str', required=False),
|
|
|
|
wal_vg=dict(type='str', required=False),
|
2018-01-12 00:56:39 +08:00
|
|
|
crush_device_class=dict(type='str', required=False),
|
2018-01-19 23:43:48 +08:00
|
|
|
dmcrypt=dict(type='bool', required=False, default=False),
|
2017-12-01 21:25:13 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
module = AnsibleModule(
|
|
|
|
argument_spec=module_args,
|
|
|
|
supports_check_mode=True
|
|
|
|
)
|
|
|
|
|
2017-12-01 22:40:33 +08:00
|
|
|
cluster = module.params['cluster']
|
2017-12-01 21:25:13 +08:00
|
|
|
objectstore = module.params['objectstore']
|
2018-03-14 23:14:21 +08:00
|
|
|
state = module.params['state']
|
2017-12-01 21:25:13 +08:00
|
|
|
data = module.params['data']
|
|
|
|
data_vg = module.params.get('data_vg', None)
|
|
|
|
journal = module.params.get('journal', None)
|
|
|
|
journal_vg = module.params.get('journal_vg', None)
|
|
|
|
db = module.params.get('db', None)
|
|
|
|
db_vg = module.params.get('db_vg', None)
|
|
|
|
wal = module.params.get('wal', None)
|
|
|
|
wal_vg = module.params.get('wal_vg', None)
|
2018-01-12 00:56:39 +08:00
|
|
|
crush_device_class = module.params.get('crush_device_class', None)
|
2018-01-19 23:43:48 +08:00
|
|
|
dmcrypt = module.params['dmcrypt']
|
2017-12-01 21:25:13 +08:00
|
|
|
|
|
|
|
cmd = [
|
|
|
|
'ceph-volume',
|
2017-12-01 22:40:33 +08:00
|
|
|
'--cluster',
|
|
|
|
cluster,
|
2018-03-14 22:57:49 +08:00
|
|
|
'lvm',
|
2017-12-01 21:25:13 +08:00
|
|
|
'create',
|
|
|
|
'--%s' % objectstore,
|
|
|
|
'--data',
|
|
|
|
]
|
|
|
|
|
2017-12-02 03:26:36 +08:00
|
|
|
data = get_data(data, data_vg)
|
2017-12-01 21:25:13 +08:00
|
|
|
cmd.append(data)
|
|
|
|
|
|
|
|
if journal:
|
2017-12-02 03:26:36 +08:00
|
|
|
journal = get_journal(journal, journal_vg)
|
2017-12-01 21:25:13 +08:00
|
|
|
cmd.extend(["--journal", journal])
|
|
|
|
|
|
|
|
if db:
|
2017-12-02 03:26:36 +08:00
|
|
|
db = get_db(db, db_vg)
|
2017-12-01 21:25:13 +08:00
|
|
|
cmd.extend(["--block.db", db])
|
|
|
|
|
|
|
|
if wal:
|
2017-12-02 03:26:36 +08:00
|
|
|
wal = get_wal(wal, wal_vg)
|
2017-12-01 21:25:13 +08:00
|
|
|
cmd.extend(["--block.wal", wal])
|
|
|
|
|
2018-01-12 00:56:39 +08:00
|
|
|
if crush_device_class:
|
|
|
|
cmd.extend(["--crush-device-class", crush_device_class])
|
|
|
|
|
2018-01-19 23:43:48 +08:00
|
|
|
if dmcrypt:
|
|
|
|
cmd.append("--dmcrypt")
|
|
|
|
|
2017-12-01 21:25:13 +08:00
|
|
|
result = dict(
|
|
|
|
changed=False,
|
|
|
|
cmd=cmd,
|
|
|
|
stdout='',
|
|
|
|
stderr='',
|
|
|
|
rc='',
|
|
|
|
start='',
|
|
|
|
end='',
|
|
|
|
delta='',
|
|
|
|
)
|
|
|
|
|
|
|
|
if module.check_mode:
|
|
|
|
return result
|
|
|
|
|
|
|
|
# check to see if osd already exists
|
|
|
|
# FIXME: this does not work when data is a raw device
|
|
|
|
rc, out, err = module.run_command(["ceph-volume", "lvm", "list", data], encoding=None)
|
|
|
|
if rc == 0:
|
|
|
|
result["stdout"] = "skipped, since {0} is already used for an osd".format(data)
|
|
|
|
result['rc'] = 0
|
|
|
|
module.exit_json(**result)
|
|
|
|
|
|
|
|
startd = datetime.datetime.now()
|
|
|
|
|
|
|
|
rc, out, err = module.run_command(cmd, encoding=None)
|
|
|
|
|
|
|
|
endd = datetime.datetime.now()
|
|
|
|
delta = endd - startd
|
|
|
|
|
|
|
|
result = dict(
|
|
|
|
cmd=cmd,
|
|
|
|
stdout=out.rstrip(b"\r\n"),
|
|
|
|
stderr=err.rstrip(b"\r\n"),
|
|
|
|
rc=rc,
|
|
|
|
start=str(startd),
|
|
|
|
end=str(endd),
|
|
|
|
delta=str(delta),
|
|
|
|
changed=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
if rc != 0:
|
|
|
|
module.fail_json(msg='non-zero return code', **result)
|
|
|
|
|
|
|
|
module.exit_json(**result)
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
run_module()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|