2018-04-11 23:15:29 +08:00
|
|
|
---
|
|
|
|
- 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:
|
|
|
|
- /var/lib/ceph/bootstrap-rgw
|
|
|
|
- /var/lib/ceph/radosgw
|
|
|
|
- /var/lib/ceph/radosgw/{{ cluster }}-rgw.{{ ansible_hostname }}
|
|
|
|
- "{{ rbd_client_admin_socket_path }}"
|
|
|
|
|
|
|
|
- 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' }}"
|
2018-06-25 21:12:56 +08:00
|
|
|
mode: "{{ ceph_keyring_permissions }}"
|
2018-04-11 23:15:29 +08:00
|
|
|
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
|
2018-06-25 21:12:56 +08:00
|
|
|
- item.copy_key|bool
|