mirror of https://github.com/ceph/ceph-ansible.git
432 lines
11 KiB
Plaintext
432 lines
11 KiB
Plaintext
---
|
|
# Defines deployment design and assigns role to server groups
|
|
|
|
- hosts:
|
|
- mons
|
|
- osds
|
|
- mdss
|
|
- rgws
|
|
- nfss
|
|
- restapis
|
|
- rbdmirrors
|
|
- clients
|
|
- mgrs
|
|
- iscsigws
|
|
- iscsi-gws # for backward compatibility only!
|
|
|
|
gather_facts: false
|
|
any_errors_fatal: true
|
|
become: true
|
|
|
|
tags:
|
|
- always
|
|
|
|
vars:
|
|
delegate_facts_host: True
|
|
|
|
pre_tasks:
|
|
# If we can't get python2 installed before any module is used we will fail
|
|
# so just try what we can to get it installed
|
|
- name: check for python2
|
|
stat:
|
|
path: /usr/bin/python
|
|
ignore_errors: yes
|
|
register: systempython2
|
|
|
|
- name: install python2 for debian based systems
|
|
raw: sudo apt-get -y install python-simplejson
|
|
ignore_errors: yes
|
|
when:
|
|
- systempython2.stat is undefined or systempython2.stat.exists == false
|
|
|
|
- name: install python2 for fedora
|
|
raw: sudo dnf -y install python creates=/usr/bin/python
|
|
ignore_errors: yes
|
|
when:
|
|
- systempython2.stat is undefined or systempython2.stat.exists == false
|
|
|
|
- name: install python2 for opensuse
|
|
raw: sudo zypper -n install python-base creates=/usr/bin/python2.7
|
|
ignore_errors: yes
|
|
when:
|
|
- systempython2.stat is undefined or systempython2.stat.exists == false
|
|
|
|
- name: gather facts
|
|
setup:
|
|
gather_subset:
|
|
- 'all'
|
|
- '!facter'
|
|
- '!ohai'
|
|
when:
|
|
- not delegate_facts_host | bool or inventory_hostname in groups.get(client_group_name, [])
|
|
|
|
- name: gather and delegate facts
|
|
setup:
|
|
gather_subset:
|
|
- 'all'
|
|
- '!facter'
|
|
- '!ohai'
|
|
delegate_to: "{{ item }}"
|
|
delegate_facts: True
|
|
with_items: "{{ groups['all'] | difference(groups.get('clients', [])) }}"
|
|
run_once: true
|
|
when:
|
|
- delegate_facts_host | bool
|
|
|
|
- name: install required packages for fedora > 23
|
|
raw: sudo dnf -y install python2-dnf libselinux-python ntp
|
|
when:
|
|
- ansible_distribution == 'Fedora'
|
|
- ansible_distribution_major_version|int >= 23
|
|
|
|
roles:
|
|
- ceph-defaults
|
|
- ceph-facts
|
|
- ceph-validate
|
|
- ceph-infra
|
|
|
|
|
|
- hosts: mons
|
|
gather_facts: false
|
|
become: True
|
|
any_errors_fatal: true
|
|
pre_tasks:
|
|
- name: set ceph monitor install 'In Progress'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_mon:
|
|
status: "In Progress"
|
|
start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
roles:
|
|
- role: ceph-defaults
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-facts
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-handler
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-common
|
|
- role: ceph-config
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-mon
|
|
post_tasks:
|
|
- name: set ceph monitor install 'Complete'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_mon:
|
|
status: "Complete"
|
|
end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
|
|
- hosts: mgrs
|
|
gather_facts: false
|
|
become: True
|
|
any_errors_fatal: true
|
|
pre_tasks:
|
|
- name: set ceph manager install 'In Progress'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_mgr:
|
|
status: "In Progress"
|
|
start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
roles:
|
|
- role: ceph-defaults
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-facts
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-handler
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-common
|
|
- role: ceph-config
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-mgr
|
|
post_tasks:
|
|
- name: set ceph manager install 'Complete'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_mgr:
|
|
status: "Complete"
|
|
end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
|
|
- hosts: osds
|
|
gather_facts: false
|
|
become: True
|
|
any_errors_fatal: true
|
|
pre_tasks:
|
|
- name: set ceph osd install 'In Progress'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_osd:
|
|
status: "In Progress"
|
|
start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
roles:
|
|
- role: ceph-defaults
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-facts
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-handler
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-common
|
|
- role: ceph-config
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-osd
|
|
post_tasks:
|
|
- name: set ceph osd install 'Complete'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_osd:
|
|
status: "Complete"
|
|
end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
|
|
- hosts: mdss
|
|
gather_facts: false
|
|
become: True
|
|
any_errors_fatal: true
|
|
pre_tasks:
|
|
- name: set ceph mds install 'In Progress'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_mds:
|
|
status: "In Progress"
|
|
start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
roles:
|
|
- role: ceph-defaults
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-facts
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-handler
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-common
|
|
- role: ceph-config
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-mds
|
|
post_tasks:
|
|
- name: set ceph mds install 'Complete'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_mds:
|
|
status: "Complete"
|
|
end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
|
|
- hosts: rgws
|
|
gather_facts: false
|
|
become: True
|
|
any_errors_fatal: true
|
|
pre_tasks:
|
|
- name: set ceph rgw install 'In Progress'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_rgw:
|
|
status: "In Progress"
|
|
start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
roles:
|
|
- role: ceph-defaults
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-facts
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-handler
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-common
|
|
- role: ceph-config
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-rgw
|
|
post_tasks:
|
|
- name: set ceph rgw install 'Complete'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_rgw:
|
|
status: "Complete"
|
|
end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
|
|
- hosts: nfss
|
|
gather_facts: false
|
|
become: True
|
|
any_errors_fatal: true
|
|
pre_tasks:
|
|
- name: set ceph nfs install 'In Progress'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_nfs:
|
|
status: "In Progress"
|
|
start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
roles:
|
|
- role: ceph-defaults
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-facts
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-handler
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-common
|
|
- role: ceph-config
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-nfs
|
|
post_tasks:
|
|
- name: set ceph nfs install 'Complete'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_nfs:
|
|
status: "Complete"
|
|
end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
|
|
- hosts: restapis
|
|
gather_facts: false
|
|
become: True
|
|
any_errors_fatal: true
|
|
pre_tasks:
|
|
- name: set ceph rest api install 'In Progress'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_restapi:
|
|
status: "In Progress"
|
|
start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
roles:
|
|
- role: ceph-defaults
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-handler
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-common
|
|
- role: ceph-config
|
|
tags: ['ceph_update_config']
|
|
when:
|
|
- ceph_release_num[ceph_release] <= ceph_release_num.luminous
|
|
- role: ceph-restapi
|
|
when:
|
|
- ceph_release_num[ceph_release] <= ceph_release_num.luminous
|
|
post_tasks:
|
|
- name: set ceph rest api install 'Complete'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_restapi:
|
|
status: "Complete"
|
|
end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
|
|
- hosts: rbdmirrors
|
|
gather_facts: false
|
|
become: True
|
|
any_errors_fatal: true
|
|
pre_tasks:
|
|
- name: set ceph rbd mirror install 'In Progress'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_rbdmirror:
|
|
status: "In Progress"
|
|
start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
roles:
|
|
- role: ceph-defaults
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-facts
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-handler
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-common
|
|
- role: ceph-config
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-rbd-mirror
|
|
post_tasks:
|
|
- name: set ceph rbd mirror install 'Complete'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_rbdmirror:
|
|
status: "Complete"
|
|
end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
|
|
- hosts: clients
|
|
gather_facts: false
|
|
become: True
|
|
any_errors_fatal: true
|
|
pre_tasks:
|
|
- name: set ceph client install 'In Progress'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_client:
|
|
status: "In Progress"
|
|
start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
roles:
|
|
- role: ceph-defaults
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-facts
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-handler
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-common
|
|
- role: ceph-config
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-client
|
|
post_tasks:
|
|
- name: set ceph client install 'Complete'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_client:
|
|
status: "Complete"
|
|
end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
|
|
- hosts:
|
|
- iscsigws
|
|
- iscsi-gws # for backward compatibility only!
|
|
gather_facts: false
|
|
become: True
|
|
any_errors_fatal: true
|
|
pre_tasks:
|
|
- name: set ceph iscsi gateway install 'In Progress'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_iscsi_gw:
|
|
status: "In Progress"
|
|
start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
roles:
|
|
- role: ceph-defaults
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-facts
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-handler
|
|
- role: ceph-common
|
|
- role: ceph-config
|
|
tags: ['ceph_update_config']
|
|
- role: ceph-iscsi-gw
|
|
post_tasks:
|
|
- name: set ceph iscsi gw install 'Complete'
|
|
run_once: true
|
|
set_stats:
|
|
data:
|
|
installer_phase_ceph_iscsi_gw:
|
|
status: "Complete"
|
|
end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|
|
|
|
- hosts: mons
|
|
gather_facts: false
|
|
become: True
|
|
any_errors_fatal: true
|
|
roles:
|
|
- role: ceph-defaults
|
|
post_tasks:
|
|
- name: get ceph status from the first monitor
|
|
command: ceph --cluster {{ cluster }} -s
|
|
register: ceph_status
|
|
changed_when: false
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
run_once: true
|
|
|
|
- name: "show ceph status for cluster {{ cluster }}"
|
|
debug:
|
|
msg: "{{ ceph_status.stdout_lines }}"
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
run_once: true
|
|
when: not ceph_status.failed
|