我正在拨打 REST 电话,并希望在继续之前检查我的请求是否已完成。在响应中,我得到了“PENDING”或“IN_PROGRESS”作为 request_status。我想等到我得到“完成”或“失败”。为此,我想在获得“PENDING”或“IN_PROGRESS”时等待
我尝试了很多变化,但都没有成功,最后一次尝试如下:
- name: Wait for the cluster deployment (this will take a while)
uri:
url: http://localhost:8080/api/v1/clusters/{{ cluster_name }}/requests/1
method: GET
user: admin
password: admin
HEADER_X-Requested-By: Ansible
force_basic_auth: yes
status_code: 200, 201, 202
return_content: yes
register: response
until: "'{{ (response.content | from_json).Requests.request_status }}' != 'PENDING' AND '{{ (response.content | from_json).Requests.request_status }}' != 'IN_PROGRESS'"
retries: 3
delay: 5
错误是:
所以,我的问题是如何在 Ansible 的 do-until 循环中指定多个条件?
最佳答案
好的发现问题了。
将“AND”更改为“and”有效。
关于python - 如何在 Ansible 的 do-until 循环中指定多个条件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36874322/