Skip to content
Snippets Groups Projects
Commit 19d0159e authored by Matthew Mosesohn's avatar Matthew Mosesohn
Browse files

Raise timeout for get netchecker agents

parent 43e86921
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@
run_once: true
delegate_to: "{{groups['kube-master'][0]}}"
register: agents
retries: 6
retries: 18
delay: "{{ agent_report_interval }}"
until: "{{ agents.content|length > 0 and
agents.content[0] == '{' and
......@@ -55,7 +55,7 @@
- debug: var=agents.content|from_json
failed_when: not agents|success and not agents.content=='{}'
run_once: true
- name: Check netchecker status
uri: url=http://localhost:{{netchecker_port}}/api/v1/connectivity_check status_code=200 return_content=yes
delegate_to: "{{groups['kube-master'][0]}}"
......@@ -71,6 +71,7 @@
failed_when: not result|success
run_once: true
when: not agents.content=='{}'
delegate_to: "{{groups['kube-master'][0]}}"
- debug: msg="Cannot get reports from agents, consider as PASSING"
run_once: true
......
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