Browse Source

Fix `ready` to not to be an AnsibleUnsafeText (#3404)

pull/2747/merge
KMilhan 6 years ago
committed by k8s-ci-robot
parent
commit
df7d53b9ef
1 changed files with 1 additions and 1 deletions
  1. 2
      contrib/network-storage/heketi/roles/provision/tasks/glusterfs.yml

2
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

Loading…
Cancel
Save