mirror of https://github.com/ceph/ceph-ansible.git
66 lines
2.2 KiB
YAML
66 lines
2.2 KiB
YAML
---
|
|
- name: install ceph mds for debian
|
|
apt:
|
|
name: ceph-mds
|
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
|
default_release: "{{ ceph_stable_release_uca | default('') if ceph_origin == 'repository' and ceph_repository == 'uca' else '' }}{{ ansible_facts['distribution_release'] ~ '-backports' if ceph_origin == 'distro' and ceph_use_distro_backports | bool else '' }}"
|
|
when:
|
|
- mds_group_name in group_names
|
|
- ansible_facts['os_family'] == 'Debian'
|
|
register: result
|
|
until: result is succeeded
|
|
|
|
- name: install ceph-mds package on redhat or SUSE/openSUSE
|
|
package:
|
|
name: "ceph-mds"
|
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
|
register: result
|
|
until: result is succeeded
|
|
when:
|
|
- mds_group_name in group_names
|
|
- ansible_facts['os_family'] in ['Suse', 'RedHat']
|
|
|
|
- name: create mds keyring
|
|
ceph_key:
|
|
name: "mds.{{ ansible_facts['hostname'] }}"
|
|
cluster: "{{ cluster }}"
|
|
user: client.bootstrap-mds
|
|
user_key: "/var/lib/ceph/bootstrap-mds/{{ cluster }}.keyring"
|
|
caps:
|
|
mon: "allow profile mds"
|
|
mds: "allow"
|
|
osd: "allow rwx"
|
|
dest: "/var/lib/ceph/mds/{{ cluster }}-{{ ansible_facts['hostname'] }}/keyring"
|
|
import_key: false
|
|
owner: ceph
|
|
group: ceph
|
|
mode: "{{ ceph_keyring_permissions }}"
|
|
no_log: "{{ no_log_on_ceph_key_tasks }}"
|
|
when: cephx | bool
|
|
|
|
- name: ensure systemd service override directory exists
|
|
file:
|
|
state: directory
|
|
path: "/etc/systemd/system/ceph-mds@.service.d/"
|
|
when:
|
|
- ceph_mds_systemd_overrides is defined
|
|
- ansible_facts['service_mgr'] == 'systemd'
|
|
|
|
- name: add ceph-mds systemd service overrides
|
|
openstack.config_template.config_template:
|
|
src: "ceph-mds.service.d-overrides.j2"
|
|
dest: "/etc/systemd/system/ceph-mds@.service.d/ceph-mds-systemd-overrides.conf"
|
|
config_overrides: "{{ ceph_mds_systemd_overrides | default({}) }}"
|
|
config_type: "ini"
|
|
when:
|
|
- ceph_mds_systemd_overrides is defined
|
|
- ansible_facts['service_mgr'] == 'systemd'
|
|
|
|
- name: start and add that the metadata service to the init sequence
|
|
service:
|
|
name: ceph-mds@{{ ansible_facts['hostname'] }}
|
|
state: started
|
|
enabled: yes
|
|
masked: no
|
|
changed_when: false
|