mirror of https://github.com/ceph/ceph-ansible.git
40 lines
1.4 KiB
YAML
40 lines
1.4 KiB
YAML
---
|
|
- name: set_fact container_exec_cmd
|
|
set_fact:
|
|
container_exec_cmd: "{{ container_binary }} exec ceph-nfs-{{ ceph_nfs_service_suffix | default(ansible_hostname) }}"
|
|
when: containerized_deployment | bool
|
|
|
|
- name: include pre_requisite_non_container.yml
|
|
include_tasks: pre_requisite_non_container.yml
|
|
when: not containerized_deployment | bool
|
|
|
|
- name: include pre_requisite_container.yml
|
|
include_tasks: pre_requisite_container.yml
|
|
when: containerized_deployment | bool
|
|
|
|
- name: include create_rgw_nfs_user.yml
|
|
import_tasks: create_rgw_nfs_user.yml
|
|
when: groups.get(mon_group_name, []) | length > 0
|
|
|
|
# NOTE (leseb): workaround for issues with ganesha and librgw
|
|
- name: include ganesha_selinux_fix.yml
|
|
import_tasks: ganesha_selinux_fix.yml
|
|
when:
|
|
- not containerized_deployment | bool
|
|
- ansible_os_family == 'RedHat'
|
|
|
|
- name: copy rgw keyring when deploying internal ganesha with external ceph cluster
|
|
copy:
|
|
src: "/etc/ceph/{{ cluster }}.{{ ceph_nfs_ceph_user.name }}.keyring"
|
|
dest: "/var/lib/ceph/radosgw/{{ cluster }}-rgw.{{ ansible_hostname }}/keyring"
|
|
mode: '0600'
|
|
owner: "{{ ceph_uid if containerized_deployment else 'ceph' }}"
|
|
group: "{{ ceph_uid if containerized_deployment else 'ceph' }}"
|
|
remote_src: true
|
|
when:
|
|
- groups.get(mon_group_name, []) | length == 0
|
|
- ceph_nfs_ceph_user is defined
|
|
|
|
- name: include start_nfs.yml
|
|
import_tasks: start_nfs.yml
|