2015-10-03 20:19:50 +00:00
---
2016-05-22 22:25:52 +00:00
- name : downloading...
debug :
msg : "{{ download.url }}"
2016-09-14 12:30:57 +00:00
when : "{{ download.enabled|bool and not download.container|bool }}"
2016-05-22 22:25:52 +00:00
2015-12-31 15:05:25 +00:00
- name : Create dest directories
2016-05-22 22:25:52 +00:00
file : path={{local_release_dir}}/{{download.dest|dirname}} state=directory recurse=yes
2016-09-14 12:30:57 +00:00
when : "{{ download.enabled|bool and not download.container|bool }}"
2015-12-31 15:05:25 +00:00
- name : Download items
get_url :
2016-05-22 22:25:52 +00:00
url : "{{download.url}}"
dest : "{{local_release_dir}}/{{download.dest}}"
sha256sum : "{{download.sha256 | default(omit)}}"
owner : "{{ download.owner|default(omit) }}"
mode : "{{ download.mode|default(omit) }}"
2016-09-14 12:30:57 +00:00
register : get_url_result
until : "'OK' in get_url_result.msg or 'file already exists' in get_url_result.msg"
retries : 4
2016-09-15 09:23:27 +00:00
delay : "{{ retry_stagger | random + 3 }}"
2016-09-14 12:30:57 +00:00
when : "{{ download.enabled|bool and not download.container|bool }}"
2015-12-31 15:05:25 +00:00
- name : Extract archives
unarchive :
2016-05-22 22:25:52 +00:00
src : "{{ local_release_dir }}/{{download.dest}}"
dest : "{{ local_release_dir }}/{{download.dest|dirname}}"
owner : "{{ download.owner|default(omit) }}"
mode : "{{ download.mode|default(omit) }}"
2016-01-25 19:30:48 +00:00
copy : no
2016-09-14 12:30:57 +00:00
when : "{{ download.enabled|bool and not download.container|bool and download.unarchive is defined and download.unarchive == True }}"
2016-01-25 19:30:48 +00:00
- name : Fix permissions
file :
state : file
2016-05-22 22:25:52 +00:00
path : "{{local_release_dir}}/{{download.dest}}"
owner : "{{ download.owner|default(omit) }}"
mode : "{{ download.mode|default(omit) }}"
2016-09-14 12:30:57 +00:00
when : "{{ download.enabled|bool and not download.container|bool and (download.unarchive is not defined or download.unarchive == False) }}"
- name : pulling...
debug :
msg : "{{ download.repo }}:{{ download.tag }}"
when : "{{ download.enabled|bool and download.container|bool }}"
2016-11-18 12:29:03 +00:00
- set_fact :
download_delegate : "{% if download_localhost %}localhost{% else %}{{groups['kube-master'][0]}}{% endif %}"
2016-09-14 16:20:10 +00:00
- name : Create dest directory for saved/loaded container images
2016-11-18 12:29:03 +00:00
file : path="{{local_release_dir}}/containers" state=directory recurse=yes mode=0755 owner={{ansible_ssh_user}}
2016-09-14 12:30:57 +00:00
when : "{{ download.enabled|bool and download.container|bool }}"
2016-11-18 12:29:03 +00:00
# This is required for the download_localhost delegate to work smooth with CoreOS cluster nodes
- name : Hack python binary path for localhost
raw : sh -c "mkdir -p /opt/bin; ln -sf /usr/bin/python /opt/bin/python"
when : "{{ download_delegate == 'localhost' }}"
delegate_to : localhost
run_once : true
- name : Download | create local directory for saved/loaded container images
file : path="{{local_release_dir}}/containers" state=directory recurse=yes
delegate_to : localhost
become : false
run_once : true
when : "{{ download_run_once|bool and download.enabled|bool and download.container|bool and download_delegate == 'localhost' }}"
2016-09-14 12:30:57 +00:00
#NOTE(bogdando) this brings no docker-py deps for nodes
- name : Download containers
command : "/usr/bin/docker pull {{ download.repo }}:{{ download.tag }}"
register : pull_task_result
2016-11-18 12:29:03 +00:00
until : pull_task_result|success
2016-09-14 12:30:57 +00:00
retries : 4
2016-09-15 09:23:27 +00:00
delay : "{{ retry_stagger | random + 3 }}"
2016-09-14 12:30:57 +00:00
when : "{{ download.enabled|bool and download.container|bool }}"
2016-11-18 12:29:03 +00:00
delegate_to : "{{ download_delegate if download_run_once|bool else inventory_hostname }}"
2016-05-18 04:30:01 +00:00
run_once : "{{ download_run_once|bool }}"
2016-09-14 16:20:10 +00:00
- set_fact :
fname : "{{local_release_dir}}/containers/{{download.repo|regex_replace('/|\0|:', '_')}}:{{download.tag|regex_replace('/|\0|:', '_')}}.tar"
2016-10-24 13:11:52 +00:00
- name : "Set default value for 'container_changed' to false"
set_fact :
container_changed : false
- name : "Update the 'container_changed' fact"
set_fact :
container_changed : "{{ not 'up to date' in pull_task_result.stdout }}"
when : "{{ download.enabled|bool and download.container|bool }}"
2016-11-18 12:29:03 +00:00
delegate_to : "{{ download_delegate if download_run_once|bool else inventory_hostname }}"
2016-10-24 13:11:52 +00:00
run_once : "{{ download_run_once|bool }}"
2016-11-18 12:29:03 +00:00
- name : Stat saved container image
stat : path="{{fname}}"
register : img
changed_when : false
when : "{{ download.enabled|bool and download.container|bool and download_run_once|bool }}"
delegate_to : "{{ download_delegate }}"
become : false
2016-09-14 16:20:10 +00:00
run_once : true
2016-11-18 12:29:03 +00:00
- name : Download | save container images
shell : docker save "{{ download.repo }}:{{ download.tag }}" | gzip -{{ download_compress }} > "{{ fname }}"
delegate_to : "{{ download_delegate }}"
register : saved
2016-11-16 10:59:39 +00:00
run_once : true
2016-11-18 12:29:03 +00:00
become : false
when : (ansible_os_family != "CoreOS" or download_delegate == "localhost") and download_run_once|bool and download.enabled|bool and download.container|bool and (container_changed|bool or not img.stat.exists)
2016-11-16 10:59:39 +00:00
- name : Download | copy container images to ansible host
synchronize :
src : "{{ fname }}"
dest : "{{ fname }}"
mode : pull
delegate_to : localhost
become : false
2016-11-18 12:29:03 +00:00
when : ansible_os_family != "CoreOS" and inventory_hostname == groups['kube-master'][0] and download_delegate != "localhost" and download_run_once|bool and download.enabled|bool and download.container|bool and saved.changed
2016-11-16 10:59:39 +00:00
- name : Download | upload container images to nodes
2016-09-14 16:20:10 +00:00
synchronize :
src : "{{ fname }}"
2016-11-16 10:59:39 +00:00
dest : "{{ fname }}"
2016-09-14 16:20:10 +00:00
mode : push
2016-11-16 10:59:39 +00:00
delegate_to : localhost
become : false
2016-09-14 16:20:10 +00:00
register : get_task
until : get_task|success
retries : 4
2016-09-15 09:23:27 +00:00
delay : "{{ retry_stagger | random + 3 }}"
2016-11-18 12:29:03 +00:00
when : (ansible_os_family != "CoreOS" and inventory_hostname != groups['kube-master'][0] or download_delegate == "localhost") and download_run_once|bool and download.enabled|bool and download.container|bool
2016-09-14 16:20:10 +00:00
- name : Download | load container images
shell : docker load < "{{ fname }}"
2016-11-18 12:29:03 +00:00
when : (ansible_os_family != "CoreOS" and inventory_hostname != groups['kube-master'][0] or download_delegate == "localhost") and download_run_once|bool and download.enabled|bool and download.container|bool