From fe88c89c9c3a8e8dfa0838582d4391d4c24b3424 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Mon, 29 Oct 2018 12:05:09 +0100 Subject: [PATCH] validate: remove check on rgw_multisite_endpoint_addr definition MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit since `rgw_multisite_endpoint_addr` has a default value to `{{ ansible_fqdn }}`, it shouldn't be mandatory to set this variable. Signed-off-by: Guillaume Abrioux --- roles/ceph-validate/tasks/check_rgw_multisite.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/roles/ceph-validate/tasks/check_rgw_multisite.yml b/roles/ceph-validate/tasks/check_rgw_multisite.yml index 84a6ea677..8ad3d2c98 100644 --- a/roles/ceph-validate/tasks/check_rgw_multisite.yml +++ b/roles/ceph-validate/tasks/check_rgw_multisite.yml @@ -41,11 +41,6 @@ msg: "system_secret_key has not been set by the user" when: system_secret_key is undefined -- name: fail if rgw_multisite_endpoint_addr is not set - fail: - msg: "rgw_multisite_endpoint_addr has not been set by the user" - when: rgw_multisite_endpoint_addr is undefined - - name: fail if rgw_pull_port is not set fail: msg: "rgw_pull_port has not been set by the user"