ceph-ansible/roles/ceph-radosgw/tasks/pre_requisite.yml

49 lines
1.3 KiB
YAML
Raw Normal View History

---
- name: create RGW directories
file: >
path={{ item }}
state=directory
owner=root
group=root
mode=0644
with_items:
- /var/lib/ceph/bootstrap-rgw
- /var/lib/ceph/radosgw/ceph-rgw.{{ ansible_hostname }}
- name: copy RGW bootstrap key
copy: >
src=fetch/{{ fsid }}/var/lib/ceph/bootstrap-rgw/ceph.keyring
dest=/var/lib/ceph/bootstrap-rgw/ceph.keyring
owner=root
group=root
mode=600
when: cephx
- name: create RGW keyring
command: >
ceph --cluster ceph --name client.bootstrap-rgw --keyring /var/lib/ceph/bootstrap-rgw/ceph.keyring auth get-or-create client.rgw.{{ ansible_hostname }} osd 'allow rwx' mon 'allow rw' -o /var/lib/ceph/radosgw/ceph-rgw.{{ ansible_hostname }}/keyring
creates=/var/lib/ceph/radosgw/ceph-rgw.{{ ansible_hostname }}/keyring
changed_when: false
when: cephx
- name: set RGW key permissions
file: >
path=/var/lib/ceph/radosgw/ceph-rgw.{{ ansible_hostname }}/keyring
mode=0600
owner=root
group=root
when: cephx
- name: activate RGW with upstart
file: >
path=/var/lib/ceph/radosgw/ceph-rgw.{{ ansible_hostname }}/{{ item }}
state=touch
owner=root
group=root
mode=0644
with_items:
- done
- upstart
changed_when: false
when: ansible_distribution == "Ubuntu"