2014-09-05 03:14:11 +08:00
|
|
|
---
|
2015-05-16 00:27:41 +08:00
|
|
|
# NOTE (leseb) : this task is for disk devices only because of the explicit use of the first
|
2014-09-05 03:14:11 +08:00
|
|
|
# partition.
|
2016-02-25 06:09:34 +08:00
|
|
|
|
|
|
|
- name: automatically activate osd disk(s) without partitions
|
|
|
|
command: ceph-disk activate "/dev/{{ item.key }}"
|
|
|
|
ignore_errors: true
|
|
|
|
with_dict: ansible_devices
|
|
|
|
when:
|
2016-05-09 22:08:33 +08:00
|
|
|
- ansible_devices is defined
|
|
|
|
- item.value.removable == "0"
|
|
|
|
- item.value.partitions|count == 0
|
|
|
|
- journal_collocation
|
|
|
|
- osd_auto_discovery
|
2016-02-25 06:09:34 +08:00
|
|
|
|
2015-07-24 02:01:43 +08:00
|
|
|
- name: activate osd(s) when device is a disk
|
2015-10-19 09:24:47 +08:00
|
|
|
command: ceph-disk activate {{ item.1 | regex_replace('^(\/dev\/cciss\/c[0-9]{1}d[0-9]{1})$', '\\1p') }}1
|
2014-09-05 03:14:11 +08:00
|
|
|
with_together:
|
2016-02-12 07:54:09 +08:00
|
|
|
- combined_ispartition_results.results
|
2014-09-05 03:14:11 +08:00
|
|
|
- devices
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2015-08-18 00:14:06 +08:00
|
|
|
failed_when: false
|
2016-04-11 22:28:03 +08:00
|
|
|
register: activate_osd_disk
|
2016-02-25 00:25:26 +08:00
|
|
|
when:
|
2016-05-09 22:08:33 +08:00
|
|
|
- not item.0.get("skipped")
|
|
|
|
- item.0.get("rc", 0) != 0
|
|
|
|
- not osd_auto_discovery
|
2014-09-05 03:14:11 +08:00
|
|
|
|
2016-04-11 22:28:03 +08:00
|
|
|
- name: fail if ceph-disk cannot create an OSD
|
|
|
|
fail:
|
|
|
|
msg: "ceph-disk failed to create an OSD"
|
|
|
|
when:
|
|
|
|
" 'ceph-disk: Error: ceph osd create failed' in item.get('stderr', '') "
|
|
|
|
with_items: "{{activate_osd_disk.results}}"
|
|
|
|
|
2015-05-16 00:27:41 +08:00
|
|
|
# NOTE (leseb): this task is for partitions because we don't explicitly use a partition.
|
2015-07-24 02:01:43 +08:00
|
|
|
- name: activate osd(s) when device is a partition
|
2014-09-05 03:14:11 +08:00
|
|
|
command: "ceph-disk activate {{ item.1 }}"
|
|
|
|
with_together:
|
2016-02-12 07:54:09 +08:00
|
|
|
- combined_ispartition_results.results
|
2014-09-05 03:14:11 +08:00
|
|
|
- devices
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2015-07-29 00:21:15 +08:00
|
|
|
failed_when: false
|
2016-02-25 00:25:26 +08:00
|
|
|
when:
|
2016-05-09 22:08:33 +08:00
|
|
|
- not item.0.get("skipped")
|
|
|
|
- item.0.get("rc", 0) == 0
|
|
|
|
- not osd_auto_discovery
|
2014-09-05 03:14:11 +08:00
|
|
|
|
2015-01-09 01:27:43 +08:00
|
|
|
- include: osd_fragment.yml
|
|
|
|
when: crush_location
|
|
|
|
|
2016-03-11 17:25:25 +08:00
|
|
|
- name: set selinux to permissive and make it persistent
|
|
|
|
selinux:
|
|
|
|
policy: targeted
|
|
|
|
state: permissive
|
|
|
|
when:
|
2016-05-09 22:08:33 +08:00
|
|
|
- ansible_selinux != false
|
|
|
|
- ansible_selinux['status'] == 'enabled'
|
|
|
|
- ansible_selinux['config_mode'] != 'disabled'
|
|
|
|
- is_before_infernalis
|
2016-03-11 17:25:25 +08:00
|
|
|
|
2015-11-21 05:34:29 +08:00
|
|
|
- name: start and add that the osd service(s) to the init sequence (before infernalis)
|
2015-10-19 09:24:47 +08:00
|
|
|
service:
|
|
|
|
name: ceph
|
|
|
|
state: started
|
|
|
|
enabled: yes
|
2015-11-21 05:34:29 +08:00
|
|
|
when:
|
2016-05-09 22:08:33 +08:00
|
|
|
- ansible_distribution != "Ubuntu"
|
|
|
|
- is_before_infernalis
|
2015-11-21 05:34:29 +08:00
|
|
|
|
2016-01-13 04:41:51 +08:00
|
|
|
- name: get osd id (for or after infernalis)
|
2016-05-04 03:47:47 +08:00
|
|
|
shell: "ls /var/lib/ceph/osd/ | grep '-' | cut -d '-' -f 2"
|
2016-01-13 04:41:51 +08:00
|
|
|
changed_when: false
|
|
|
|
failed_when: false
|
|
|
|
register: osd_id
|
|
|
|
when:
|
2016-05-09 22:08:33 +08:00
|
|
|
- use_systemd
|
|
|
|
- is_after_hammer
|
2016-01-13 04:41:51 +08:00
|
|
|
|
2016-05-14 02:19:29 +08:00
|
|
|
- name: enable the osd service (for or after infernalis)
|
|
|
|
command: systemctl enable ceph-osd@{{ item }}
|
|
|
|
changed_when: false
|
2016-01-13 04:41:51 +08:00
|
|
|
failed_when: false
|
2016-05-14 02:19:29 +08:00
|
|
|
with_items: osd_id.stdout_lines
|
2016-01-13 04:41:51 +08:00
|
|
|
when:
|
2016-05-09 22:08:33 +08:00
|
|
|
- use_systemd
|
|
|
|
- is_after_hammer
|
2016-01-13 04:41:51 +08:00
|
|
|
|
2015-11-20 22:09:34 +08:00
|
|
|
- name: start and add that the osd service(s) to the init sequence (for or after infernalis)
|
2015-11-21 05:34:29 +08:00
|
|
|
service:
|
2016-01-13 04:41:51 +08:00
|
|
|
name: ceph-osd@{{ item }}
|
2015-11-21 05:34:29 +08:00
|
|
|
state: started
|
|
|
|
enabled: yes
|
2016-01-13 04:41:51 +08:00
|
|
|
with_items: osd_id.stdout_lines
|
|
|
|
changed_when: false
|
2015-11-21 05:34:29 +08:00
|
|
|
when:
|
2016-05-09 22:08:33 +08:00
|
|
|
- use_systemd
|
|
|
|
- is_after_hammer
|