-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1968 from ceph/bz-1488999
refact MDS role
- Loading branch information
Showing
10 changed files
with
89 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
--- | ||
- name: set_fact ceph_config_keys | ||
set_fact: | ||
ceph_config_keys: | ||
- /var/lib/ceph/bootstrap-mds/{{ cluster }}.keyring | ||
|
||
- name: stat for ceph config and keys | ||
local_action: stat path={{ fetch_directory }}/{{ fsid }}/{{ item }} | ||
with_items: "{{ ceph_config_keys }}" | ||
changed_when: false | ||
become: false | ||
failed_when: false | ||
always_run: true | ||
register: statconfig | ||
|
||
- name: try to fetch ceph config and keys | ||
copy: | ||
src: "{{ fetch_directory }}/{{ fsid }}/{{ item.0 }}" | ||
dest: "{{ item.0 }}" | ||
owner: root | ||
group: root | ||
mode: 0644 | ||
changed_when: false | ||
with_together: | ||
- "{{ ceph_config_keys }}" | ||
- "{{ statconfig.results }}" | ||
when: item.1.stat.exists == true | ||
|
||
- name: set selinux permissions | ||
shell: | | ||
chcon -Rt svirt_sandbox_file_t {{ item }} | ||
with_items: | ||
- "{{ ceph_conf_key_directory }}" | ||
- /var/lib/ceph | ||
changed_when: false | ||
when: sestatus.stdout != 'Disabled' | ||
|
||
- name: generate systemd unit file | ||
become: true | ||
template: | ||
src: "{{ role_path }}/templates/ceph-mds.service.j2" | ||
dest: /etc/systemd/system/[email protected] | ||
owner: "root" | ||
group: "root" | ||
mode: "0644" | ||
|
||
- name: systemd start mds container | ||
systemd: | ||
name: ceph-mds@{{ ansible_hostname }} | ||
state: started | ||
enabled: yes | ||
daemon_reload: yes | ||
changed_when: false | ||
|
||
- name: wait for mds socket to exist | ||
command: "{{ docker_exec_cmd }} stat /var/run/ceph/{{ cluster }}-mds.{{ ansible_hostname }}.asok" | ||
register: multi_mds_socket | ||
retries: 5 | ||
delay: 15 | ||
until: multi_mds_socket.rc == 0 | ||
|
||
- name: enable multimds if requested when mon is containerized | ||
command: "{{ docker_exec_cmd }} ceph --cluster {{ cluster }} fs set {{ cephfs }} allow_multimds true --yes-i-really-mean-it" | ||
changed_when: false | ||
when: | ||
- mds_allow_multimds | ||
|
||
- name: set max_mds when mon is containerized | ||
command: "{{ docker_exec_cmd }} ceph --cluster {{ cluster }} fs set {{ cephfs }} max_mds {{ mds_max_mds }}" | ||
changed_when: false | ||
when: | ||
- mds_allow_multimds | ||
- mds_max_mds > 1 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
--- | ||
- name: include pre_requisite.yml | ||
include: pre_requisite.yml | ||
- name: non_containerized.yml | ||
include: non_containerized.yml | ||
when: not containerized_deployment | ||
|
||
- name: docker/main.yml | ||
include: docker/main.yml | ||
- name: containerized.yml | ||
include: containerized.yml | ||
when: containerized_deployment |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters