From b2629de0a27be9a15d4ffc1d08a05bda28f364df Mon Sep 17 00:00:00 2001 From: Logan V Date: Mon, 1 Aug 2016 23:07:48 -0500 Subject: [PATCH] Define retries on ceph keyring fetch task See the bug for more information however the task was failing due to the lack of retries being defined. I am only experiencing this on the master branch currently so it seems to be isolated to newer ansible versions. Change-Id: Iaff07adec857cf4f1084109ed0ecfc6d716c4e40 Closes-Bug: #1608775 --- playbooks/roles/ceph_client/tasks/ceph_auth.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/playbooks/roles/ceph_client/tasks/ceph_auth.yml b/playbooks/roles/ceph_client/tasks/ceph_auth.yml index bc721abf5c..b85c5e0f64 100644 --- a/playbooks/roles/ceph_client/tasks/ceph_auth.yml +++ b/playbooks/roles/ceph_client/tasks/ceph_auth.yml @@ -36,6 +36,7 @@ delegate_to: '{{ ceph_mon_host }}' register: ceph_client_keyrings until: ceph_client_keyrings|success + retries: 3 tags: - ceph-auth-client-keyrings