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

58 lines
1.3 KiB
YAML
Raw Normal View History

---
2014-09-05 03:14:11 +08:00
- name: Copy RGW bootstrap key
copy: >
src=fetch/{{ fsid }}/etc/ceph/radosgw.{{ ansible_hostname }}.keyring
dest=/etc/ceph/radosgw.{{ ansible_hostname }}.keyring
owner=root
group=root
mode=600
2014-09-05 03:14:11 +08:00
when: cephx
- name: Set RGW bootstrap key permissions
file: >
path=/etc/ceph/radosgw.{{ ansible_hostname }}.keyring
mode=0600
owner=root
group=root
2014-09-05 03:14:11 +08:00
when: cephx
- name: Create RGW directory
file: >
path=/var/lib/ceph/radosgw/{{ ansible_fqdn }}
state=directory
owner=root
group=root
mode=0644
## Check OS family
#
- include: install_redhat.yml
when: ansible_os_family == 'RedHat' and radosgw_frontend == 'apache'
- include: install_debian.yml
when: ansible_os_family == 'Debian' and radosgw_frontend == 'apache'
- name: "Install Rados Gateway"
apt: >
pkg=radosgw
state=present
update_cache=yes
when: ansible_os_family == 'Debian'
- name: "Install Rados Gateway"
yum: >
name=ceph-radosgw
state=present
when: ansible_os_family == 'RedHat'
## If we don't perform this check Ansible will start multiple instance of radosgw
- name: Check if RGW is started
command: /etc/init.d/radosgw status
register: rgwstatus
ignore_errors: True
- name: Start RGW
command: /etc/init.d/radosgw start
when: rgwstatus.rc != 0