mirror of https://github.com/ceph/ceph-ansible.git
36 lines
1.2 KiB
YAML
36 lines
1.2 KiB
YAML
---
|
|
- name: create rados gateway directories
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
owner: "{{ ceph_uid if containerized_deployment else 'ceph' }}"
|
|
group: "{{ ceph_uid if containerized_deployment else 'ceph' }}"
|
|
mode: "0755"
|
|
with_items:
|
|
- "{{ rbd_client_admin_socket_path }}"
|
|
|
|
- name: create rados gateway instance directories
|
|
file:
|
|
path: "/var/lib/ceph/radosgw/{{ cluster }}-rgw.{{ ansible_hostname }}.{{ item.instance_name }}"
|
|
state: directory
|
|
owner: "{{ ceph_uid if containerized_deployment else 'ceph' }}"
|
|
group: "{{ ceph_uid if containerized_deployment else 'ceph' }}"
|
|
mode: "0755"
|
|
with_items: "{{ rgw_instances }}"
|
|
when:
|
|
- rgw_instances is defined
|
|
|
|
- name: copy ceph keyring(s) if needed
|
|
copy:
|
|
src: "{{ fetch_directory }}/{{ fsid }}/{{ item.name }}"
|
|
dest: "{{ item.name }}"
|
|
owner: "{{ ceph_uid if containerized_deployment else 'ceph' }}"
|
|
group: "{{ ceph_uid if containerized_deployment else 'ceph' }}"
|
|
mode: "{{ ceph_keyring_permissions }}"
|
|
with_items:
|
|
- { name: "/var/lib/ceph/bootstrap-rgw/{{ cluster }}.keyring", copy_key: true }
|
|
- { name: "/etc/ceph/{{ cluster }}.client.admin.keyring", copy_key: "{{ copy_admin_key }}" }
|
|
when:
|
|
- cephx
|
|
- item.copy_key|bool
|