Skip to content
Snippets Groups Projects
Commit ee69ac85 authored by Bogdan Dobrelya's avatar Bogdan Dobrelya
Browse files

Fix containers download condition


Save/push/load containers if only download.enabled and download.container

Signed-off-by: default avatarBogdan Dobrelya <bdobrelia@mirantis.com>
parent 0f461282
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,7 @@
shell: docker save "{{ download.repo }}:{{ download.tag }}" > "{{ fname }}"
delegate_to: "{{groups['kube-master'][0]}}"
run_once: true
when: ansible_os_family != "CoreOS" and download_run_once|bool
when: ansible_os_family != "CoreOS" and download_run_once|bool and download.enabled|bool and download.container|bool
- name: Download | get container images
synchronize:
......@@ -86,8 +86,8 @@
until: get_task|success
retries: 4
delay: "{{ retry_stagger | random + 3 }}"
when: ansible_os_family != "CoreOS" and inventory_hostname != groups['kube-master'][0] and download_run_once|bool
when: ansible_os_family != "CoreOS" and inventory_hostname != groups['kube-master'][0] and download_run_once|bool and download.enabled|bool and download.container|bool
- name: Download | load container images
shell: docker load < "{{ fname }}"
when: ansible_os_family != "CoreOS" and inventory_hostname != groups['kube-master'][0] and download_run_once|bool
when: ansible_os_family != "CoreOS" and inventory_hostname != groups['kube-master'][0] and download_run_once|bool and download.enabled|bool and download.container|bool
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment