2014-03-04 02:08:51 +08:00
|
|
|
---
|
2018-08-10 20:16:30 +08:00
|
|
|
- name: include_tasks installs/install_on_redhat.yml
|
|
|
|
include_tasks: installs/install_on_redhat.yml
|
|
|
|
when: ansible_os_family == 'RedHat'
|
2016-05-24 22:10:37 +08:00
|
|
|
tags:
|
|
|
|
- package-install
|
2015-01-07 18:25:34 +08:00
|
|
|
|
2018-08-10 20:16:30 +08:00
|
|
|
- name: include_tasks installs/install_on_suse.yml
|
|
|
|
include_tasks: installs/install_on_suse.yml
|
|
|
|
when: ansible_os_family == 'Suse'
|
2017-10-12 21:55:20 +08:00
|
|
|
tags:
|
|
|
|
- package-install
|
|
|
|
|
2018-08-10 20:16:30 +08:00
|
|
|
- name: include_tasks installs/install_on_debian.yml
|
|
|
|
include_tasks: installs/install_on_debian.yml
|
|
|
|
when: ansible_os_family == 'Debian'
|
2016-02-04 01:27:16 +08:00
|
|
|
tags:
|
|
|
|
- package-install
|
2015-01-07 18:25:34 +08:00
|
|
|
|
2018-08-10 20:16:30 +08:00
|
|
|
- name: include_tasks installs/install_on_clear.yml
|
|
|
|
include_tasks: installs/install_on_clear.yml
|
|
|
|
when: ansible_os_family == 'ClearLinux'
|
2016-04-23 03:13:36 +08:00
|
|
|
tags:
|
|
|
|
- package-install
|
|
|
|
|
2017-07-29 05:02:51 +08:00
|
|
|
- name: get ceph version
|
|
|
|
command: ceph --version
|
|
|
|
changed_when: false
|
2017-10-25 22:53:34 +08:00
|
|
|
check_mode: no
|
2017-07-29 05:02:51 +08:00
|
|
|
register: ceph_version
|
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: set_fact ceph_version
|
|
|
|
set_fact:
|
2017-07-29 05:02:51 +08:00
|
|
|
ceph_version: "{{ ceph_version.stdout.split(' ')[2] }}"
|
|
|
|
|
2017-08-03 23:43:05 +08:00
|
|
|
# override ceph_stable_release for ceph_dev and rhcs installations since ceph_stable_release is not mandatory
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: include release-rhcs.yml
|
2018-08-21 22:23:35 +08:00
|
|
|
include_tasks: release-rhcs.yml
|
2017-08-03 21:30:25 +08:00
|
|
|
when:
|
|
|
|
- ceph_repository in ['rhcs', 'dev']
|
2017-08-03 23:43:05 +08:00
|
|
|
tags:
|
|
|
|
- always
|
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: include facts_mon_fsid.yml
|
2018-08-21 22:23:35 +08:00
|
|
|
include_tasks: facts_mon_fsid.yml
|
2017-07-29 05:02:51 +08:00
|
|
|
run_once: true
|
|
|
|
when:
|
|
|
|
- cephx
|
|
|
|
- mon_group_name in group_names
|
2018-08-22 02:50:31 +08:00
|
|
|
- not monitor_keyring_conf.stat.exists
|
|
|
|
- ceph_current_status.fsid is defined
|
2017-07-29 05:02:51 +08:00
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: include create_rbd_client_dir.yml
|
2018-08-21 22:23:35 +08:00
|
|
|
include_tasks: create_rbd_client_dir.yml
|
2017-09-15 06:48:53 +08:00
|
|
|
|
|
|
|
- name: include configure_cluster_name.yml
|
2018-08-21 22:23:35 +08:00
|
|
|
include_tasks: configure_cluster_name.yml
|
2017-10-23 21:57:24 +08:00
|
|
|
|
|
|
|
- name: include configure_memory_allocator.yml
|
2018-08-21 22:23:35 +08:00
|
|
|
include_tasks: configure_memory_allocator.yml
|
2017-10-23 21:57:24 +08:00
|
|
|
when:
|
|
|
|
- (ceph_tcmalloc_max_total_thread_cache | int) > 0
|
|
|
|
- osd_objectstore == 'filestore'
|
|
|
|
- (ceph_origin == 'repository' or ceph_origin == 'distro')
|