From 547e90f2811c3392096439bc05a74a73b4ff5c4a Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Mon, 29 Oct 2018 16:37:12 +0100 Subject: [PATCH] rgw: move multisite related tasks after docker/main.yml We must play this task after the container has started otherwise rgw_multisite tasks will fail. Signed-off-by: Guillaume Abrioux --- roles/ceph-rgw/tasks/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/ceph-rgw/tasks/main.yml b/roles/ceph-rgw/tasks/main.yml index 56efc208b..2d62cb372 100644 --- a/roles/ceph-rgw/tasks/main.yml +++ b/roles/ceph-rgw/tasks/main.yml @@ -14,14 +14,14 @@ include_tasks: start_radosgw.yml when: not containerized_deployment -- name: include_tasks multisite/main.yml - include_tasks: multisite/main.yml - when: rgw_multisite - - name: include_tasks docker/main.yml include_tasks: docker/main.yml when: containerized_deployment +- name: include_tasks multisite/main.yml + include_tasks: multisite/main.yml + when: rgw_multisite + - name: rgw pool realted tasks when: - rgw_create_pools is defined -- 2.39.5