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

30 lines
820 B
YAML
Raw Normal View History

---
2014-09-05 03:14:11 +08:00
- include: pre_requisite.yml
when: not ceph_containerized_deployment
- include: install_redhat.yml
when: ansible_os_family == 'RedHat' and radosgw_frontend == 'apache' and not ceph_containerized_deployment
- include: install_debian.yml
when: ansible_os_family == 'Debian' and radosgw_frontend == 'apache' and not ceph_containerized_deployment
- name: "Install Rados Gateway"
apt: >
pkg=radosgw
state=present
update_cache=yes
when: ansible_os_family == 'Debian' and not ceph_containerized_deployment
- name: "Install Rados Gateway"
yum: >
name=ceph-radosgw
state=present
when: ansible_os_family == 'RedHat' and not ceph_containerized_deployment
- include: start_radosgw.yml
when: not ceph_containerized_deployment
- include: docker.yml
when: ceph_containerized_deployment