2015-01-21 01:43:47 +08:00
|
|
|
---
|
2017-10-09 21:37:51 +08:00
|
|
|
- name: install ceph mds for debian
|
|
|
|
apt:
|
|
|
|
name: ceph-mds
|
|
|
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
UCA: Uncomment UCA variables in defaults, fix consequent breakage
The Ubuntu Cloud Archive-related (UCA) defaults in
roles/ceph-defaults/defaults/main.yml were commented out, which means
if you set `ceph_repository` to "uca", you get undefined variable
errors, e.g.
```
The task includes an option with an undefined variable. The error was: 'ceph_stable_repo_uca' is undefined
The error appears to have been in '/nfs/users/nfs_m/mv3/software/ceph-ansible/roles/ceph-common/tasks/installs/debian_uca_repository.yml': line 6, column 3, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
- name: add ubuntu cloud archive repository
^ here
```
Unfortunately, uncommenting these results in some other breakage,
because further roles were written that use the fact of
`ceph_stable_release_uca` being defined as a proxy for "we're using
UCA", so try and install packages from the bionic-updates/queens
release, for example, which doesn't work. So there are a few `apt` tasks
that need modifying to not use `ceph_stable_release_uca` unless
`ceph_origin` is `repository` and `ceph_repository` is `uca`.
Closes: #3475
Signed-off-by: Matthew Vernon <mv3@sanger.ac.uk>
2019-03-27 21:34:47 +08:00
|
|
|
default_release: "{{ ceph_stable_release_uca | default('') if ceph_origin == 'repository' and ceph_repository == 'uca' else '' }}{{ ansible_distribution_release ~ '-backports' if ceph_origin == 'distro' and ceph_use_distro_backports else '' }}"
|
2017-10-09 21:37:51 +08:00
|
|
|
when:
|
|
|
|
- mds_group_name in group_names
|
|
|
|
- ansible_os_family == 'Debian'
|
2018-12-20 17:00:26 +08:00
|
|
|
register: result
|
|
|
|
until: result is succeeded
|
2017-10-09 21:37:51 +08:00
|
|
|
|
|
|
|
- name: install redhat ceph-mds package
|
|
|
|
package:
|
|
|
|
name: "ceph-mds"
|
|
|
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
2018-12-19 21:55:01 +08:00
|
|
|
register: result
|
|
|
|
until: result is succeeded
|
2017-10-09 21:37:51 +08:00
|
|
|
when:
|
|
|
|
- mds_group_name in group_names
|
|
|
|
- ansible_os_family == 'RedHat'
|
|
|
|
|
2015-07-24 02:01:43 +08:00
|
|
|
- name: create mds keyring
|
2016-03-29 21:37:31 +08:00
|
|
|
command: ceph --cluster {{ cluster }} --name client.bootstrap-mds --keyring /var/lib/ceph/bootstrap-mds/{{ cluster }}.keyring auth get-or-create mds.{{ mds_name }} osd 'allow rwx' mds 'allow' mon 'allow profile mds' -o /var/lib/ceph/mds/{{ cluster }}-{{ mds_name }}/keyring
|
2015-10-19 10:56:02 +08:00
|
|
|
args:
|
2016-03-29 21:37:31 +08:00
|
|
|
creates: /var/lib/ceph/mds/{{ cluster }}-{{ mds_name }}/keyring
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2015-01-21 01:43:47 +08:00
|
|
|
when: cephx
|
|
|
|
|
2016-02-02 22:10:24 +08:00
|
|
|
- name: set mds key permissions
|
2015-11-17 23:10:02 +08:00
|
|
|
file:
|
2016-03-29 21:37:31 +08:00
|
|
|
path: /var/lib/ceph/mds/{{ cluster }}-{{ mds_name }}/keyring
|
2017-01-20 17:14:35 +08:00
|
|
|
owner: "ceph"
|
|
|
|
group: "ceph"
|
|
|
|
mode: "0600"
|
2016-02-02 22:10:24 +08:00
|
|
|
when: cephx
|
2015-01-21 01:43:47 +08:00
|
|
|
|
2017-07-05 21:47:48 +08:00
|
|
|
- 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
|
2018-02-25 09:44:07 +08:00
|
|
|
- ansible_service_mgr == 'systemd'
|
2017-07-05 21:47:48 +08:00
|
|
|
|
|
|
|
- name: add ceph-mds systemd service overrides
|
|
|
|
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_service_mgr == 'systemd'
|
|
|
|
|
2017-01-20 17:14:35 +08:00
|
|
|
- name: start and add that the metadata service to the init sequence
|
2015-11-21 05:34:29 +08:00
|
|
|
service:
|
2016-03-03 18:03:03 +08:00
|
|
|
name: ceph-mds@{{ mds_name }}
|
2015-11-21 05:34:29 +08:00
|
|
|
state: started
|
|
|
|
enabled: yes
|
2019-03-20 18:35:36 +08:00
|
|
|
masked: no
|
2015-11-21 05:34:29 +08:00
|
|
|
changed_when: false
|