2014-03-04 02:08:51 +08:00
|
|
|
---
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: include checks/check_system.yml
|
|
|
|
include: checks/check_system.yml
|
2015-07-04 02:18:41 +08:00
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: include checks/check_mandatory_vars.yml
|
|
|
|
include: checks/check_mandatory_vars.yml
|
|
|
|
|
|
|
|
- name: include checks/check_firewall.yml
|
|
|
|
include: checks/check_firewall.yml
|
|
|
|
when:
|
|
|
|
- check_firewall
|
2016-08-24 12:23:47 +08:00
|
|
|
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
|
|
|
|
static: False
|
2016-01-08 23:36:31 +08:00
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: include misc/system_tuning.yml
|
|
|
|
include: misc/system_tuning.yml
|
|
|
|
when:
|
|
|
|
- osd_group_name in group_names
|
2016-08-24 12:23:47 +08:00
|
|
|
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
|
|
|
|
static: False
|
2014-09-05 03:14:11 +08:00
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: include installs/install_on_redhat.yml
|
|
|
|
include: installs/install_on_redhat.yml
|
2016-05-24 22:10:37 +08:00
|
|
|
when:
|
2017-08-02 21:13:06 +08:00
|
|
|
- ansible_os_family == 'RedHat'
|
2016-05-24 22:10:37 +08:00
|
|
|
tags:
|
|
|
|
- package-install
|
2016-08-24 12:23:47 +08:00
|
|
|
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
|
|
|
|
static: False
|
2015-01-07 18:25:34 +08:00
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: include installs/install_on_debian.yml
|
|
|
|
include: installs/install_on_debian.yml
|
2016-03-09 05:23:32 +08:00
|
|
|
when:
|
2016-05-09 22:08:33 +08:00
|
|
|
- ansible_os_family == 'Debian'
|
2016-02-04 01:27:16 +08:00
|
|
|
tags:
|
|
|
|
- package-install
|
2016-08-24 12:23:47 +08:00
|
|
|
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
|
|
|
|
static: False
|
2015-01-07 18:25:34 +08:00
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: include installs/install_on_clear.yml
|
|
|
|
include: installs/install_on_clear.yml
|
|
|
|
when:
|
|
|
|
- ansible_os_family == 'ClearLinux'
|
2016-04-23 03:13:36 +08:00
|
|
|
tags:
|
|
|
|
- package-install
|
|
|
|
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
|
|
|
|
static: False
|
|
|
|
|
2017-10-12 02:21:20 +08:00
|
|
|
- name: include ntp setup tasks
|
|
|
|
include: "misc/ntp_{{ ansible_os_family | lower }}.yml"
|
2016-06-10 09:32:55 +08:00
|
|
|
when:
|
2017-10-12 02:21:20 +08:00
|
|
|
- ansible_os_family in ['RedHat', 'Debian']
|
2016-06-10 09:32:55 +08:00
|
|
|
- ntp_service_enabled
|
2016-08-24 12:23:47 +08:00
|
|
|
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
|
|
|
|
static: False
|
2016-06-10 09:32:55 +08:00
|
|
|
|
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
|
|
|
|
include: 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
|
|
|
|
include: facts_mon_fsid.yml
|
2017-07-29 05:02:51 +08:00
|
|
|
run_once: true
|
|
|
|
when:
|
|
|
|
- cephx
|
|
|
|
- not monitor_keyring_conf.stat.exists
|
|
|
|
- ceph_current_fsid.rc == 0
|
|
|
|
- mon_group_name in group_names
|
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: include create_ceph_initial_dirs.yml
|
|
|
|
include: create_ceph_initial_dirs.yml
|
|
|
|
|
|
|
|
- name: include create_rbd_client_dir.yml
|
|
|
|
include: create_rbd_client_dir.yml
|
|
|
|
|
|
|
|
- name: include configure_cluster_name.yml
|
|
|
|
include: configure_cluster_name.yml
|
2017-10-23 21:57:24 +08:00
|
|
|
|
|
|
|
- name: include configure_memory_allocator.yml
|
|
|
|
include: configure_memory_allocator.yml
|
|
|
|
when:
|
|
|
|
- (ceph_tcmalloc_max_total_thread_cache | int) > 0
|
|
|
|
- osd_objectstore == 'filestore'
|
|
|
|
- (ceph_origin == 'repository' or ceph_origin == 'distro')
|