Skip to content
Snippets Groups Projects
Commit df7d53b9 authored by KMilhan's avatar KMilhan Committed by k8s-ci-robot
Browse files

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

parent 0a9a42b5
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment