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

45 lines
1.3 KiB
YAML
Raw Normal View History

---
- name: include pre_requisite.yml
include: pre_requisite.yml
when:
- not containerized_deployment
2016-08-17 02:57:01 +08:00
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
static: False
- name: include openstack-keystone.yml
include: openstack-keystone.yml
when:
- radosgw_keystone|bool
- radosgw_keystone_ssl|bool
2016-08-17 02:57:01 +08:00
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
static: False
2016-08-08 11:16:15 +08:00
- name: include start_radosgw.yml
include: start_radosgw.yml
when:
- not containerized_deployment
2016-08-17 02:57:01 +08:00
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
static: False
- name: include rgw_pool_pgs.yml
include: rgw_pool_pgs.yml
when:
- create_pools is defined
static: False
- name: include multisite/main.yml
2016-08-17 02:57:01 +08:00
include: multisite/main.yml
when:
- rgw_zone is defined
- rgw_multisite
- ceph_release_num.{{ ceph_release }} >= ceph_release_num.jewel
2016-08-17 02:57:01 +08:00
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
static: False
- name: include docker/main.yml
include: docker/main.yml
when:
- containerized_deployment
2016-08-17 02:57:01 +08:00
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
static: False