zuul-operator/playbooks/zuul-operator-functional/tasks/zuul_web_check.yaml

8 lines
256 B
YAML

- name: "check api {{ zuul_web_url }}{{ endpoint }}"
uri:
url: "{{ zuul_web_url }}{{ endpoint }}"
register: result
until: "result.json is defined and result.json and (expected is not defined or result.json == expected)"
retries: 600
delay: 1