mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-02-01 01:28:11 -03:30
Download role (#3553)
* codestyle tests * Download destination can be different than local_release_dir
This commit is contained in:
@@ -67,14 +67,16 @@
|
||||
delay: "{{ agent_report_interval }}"
|
||||
no_log: true
|
||||
failed_when: false
|
||||
when: not agents.content=='{}'
|
||||
when:
|
||||
- agents.content != '{}'
|
||||
|
||||
- debug: var=result.content|from_json
|
||||
failed_when: not result is success
|
||||
run_once: true
|
||||
when: not agents.content=='{}'
|
||||
when: not agents.content == '{}'
|
||||
delegate_to: "{{groups['kube-master'][0]}}"
|
||||
|
||||
- debug: msg="Cannot get reports from agents, consider as PASSING"
|
||||
run_once: true
|
||||
when: agents.content=='{}'
|
||||
when:
|
||||
- agents.content == '{}'
|
||||
|
||||
Reference in New Issue
Block a user