mirror of https://github.com/ceph/ceph-ansible.git
50 lines
1.3 KiB
YAML
50 lines
1.3 KiB
YAML
---
|
|
- name: set_fact bootstrap_rbd_keyring
|
|
set_fact:
|
|
bootstrap_rbd_keyring: "/var/lib/ceph/bootstrap-rbd/{{ cluster }}.keyring"
|
|
when:
|
|
- ceph_release_num.{{ ceph_release }} >= ceph_release_num.luminous
|
|
|
|
- name: set_fact ceph_config_keys
|
|
set_fact:
|
|
ceph_config_keys:
|
|
- /etc/ceph/{{ cluster }}.client.admin.keyring
|
|
- "{{ bootstrap_rbd_keyring | default('') }}"
|
|
|
|
- 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
|
|
register: statconfig
|
|
when: "item | length > 0"
|
|
tags:
|
|
- always
|
|
|
|
- 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:
|
|
- not item.1.get('skipped')
|
|
- 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:
|
|
- ansible_os_family == 'RedHat'
|
|
- sestatus.stdout != 'Disabled'
|