From df7d53b9ef0227a89a5137fd8060866b134ecbf9 Mon Sep 17 00:00:00 2001 From: KMilhan Date: Fri, 28 Sep 2018 21:07:27 +0900 Subject: [PATCH] Fix `ready` to not to be an AnsibleUnsafeText (#3404) --- .../network-storage/heketi/roles/provision/tasks/glusterfs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/network-storage/heketi/roles/provision/tasks/glusterfs.yml b/contrib/network-storage/heketi/roles/provision/tasks/glusterfs.yml index e46159969..105d9e2ac 100644 --- a/contrib/network-storage/heketi/roles/provision/tasks/glusterfs.yml +++ b/contrib/network-storage/heketi/roles/provision/tasks/glusterfs.yml @@ -22,7 +22,7 @@ daemonset_state: { stdout: "{}" } ready: "{{ daemonset_state.stdout|from_json|json_query(\"status.numberReady\") }}" desired: "{{ daemonset_state.stdout|from_json|json_query(\"status.desiredNumberScheduled\") }}" - until: "ready >= 3" + until: "ready | int >= 3" retries: 60 delay: 5