2017-10-19 08:17:11 +00:00
|
|
|
---
|
2019-06-29 21:09:20 +00:00
|
|
|
- block:
|
2020-03-05 15:31:39 +00:00
|
|
|
- name: set default values for flag variables
|
|
|
|
set_fact:
|
|
|
|
image_is_cached: false
|
|
|
|
image_changed: false
|
|
|
|
pull_required: "{{ download_always_pull }}"
|
|
|
|
tags:
|
|
|
|
- facts
|
|
|
|
|
2019-06-29 21:09:20 +00:00
|
|
|
- name: download_container | Set a few facts
|
|
|
|
import_tasks: set_container_facts.yml
|
|
|
|
tags:
|
|
|
|
- facts
|
|
|
|
|
2020-03-05 15:31:39 +00:00
|
|
|
- name: download_container | Prepare container download
|
|
|
|
include_tasks: check_pull_required.yml
|
|
|
|
when:
|
|
|
|
- not download_always_pull
|
|
|
|
|
2021-07-12 07:00:47 +00:00
|
|
|
- debug: # noqa unnamed-task
|
2020-03-05 15:31:39 +00:00
|
|
|
msg: "Pull {{ image_reponame }} required is: {{ pull_required }}"
|
|
|
|
|
2019-06-29 21:09:20 +00:00
|
|
|
- name: download_container | Determine if image is in cache
|
|
|
|
stat:
|
|
|
|
path: "{{ image_path_cached }}"
|
2021-02-10 13:36:59 +00:00
|
|
|
get_attributes: no
|
|
|
|
get_checksum: no
|
|
|
|
get_mime: no
|
2019-06-29 21:09:20 +00:00
|
|
|
delegate_to: localhost
|
2020-06-25 15:14:38 +00:00
|
|
|
connection: local
|
2019-06-29 21:09:20 +00:00
|
|
|
delegate_facts: no
|
|
|
|
register: cache_image
|
|
|
|
changed_when: false
|
|
|
|
become: false
|
|
|
|
when:
|
|
|
|
- download_force_cache
|
Added file and container image caching (#4828)
* File and container image downloads are now cached localy, so that repeated vagrant up/down runs do not trigger downloading of those files. This is especially useful on laptops with kubernetes runnig locally on vm's. The total size of the cache, after an ansible run, is currently around 800MB, so bandwidth (=time) savings can be quite significant.
* When download_run_once is false, the default is still not to cache, but setting download_force_cache will still enable caching.
* The local cache location can be set with download_cache_dir and defaults to /tmp/kubernetes_cache
* A local docker instance is no longer required to cache docker images; Images are cached to file. A local docker instance is still required, though, if you wish to download images on localhost.
* Fixed a FIXME, wher the argument was that delegate_to doesn't play nice with omit. That is a correct observation and the fix is to use default(inventory_host) instead of default(omit). See ansible/ansible#26009
* Removed "Register docker images info" task from download_container and set_docker_image_facts because it was faulty and unused.
* Removed redundant when:download.{container,enabled,run_once} conditions from {sync,download}_container.yml
* All features of commit d6fd0d2acaec9f53e75d82db30411f96a5bf2cc9 by Timoses <timosesu@gmail.com>, merged May 1st 2019, are included in this patch. Not all code was included verbatim, but each feature of that commit was checked to be working in this patch. One notable change: The actual downloading of the kubeadm images was moved to {download,sync)_container, to enable caching.
Note 1: I considered splitting this patch, but most changes that are not directly related to caching, are a pleasant by-product of implementing the caching code, so splitting would be impractical.
Note 2: I have my doubts about the usefulness of the upload, download and upgrade tags in the download role. Must they remain or can they be removed? If anybody knows, then please speak up.
2019-06-10 18:21:07 +00:00
|
|
|
|
2019-06-29 21:09:20 +00:00
|
|
|
- name: download_container | Set fact indicating if image is in cache
|
|
|
|
set_fact:
|
2020-03-05 15:31:39 +00:00
|
|
|
image_is_cached: "{{ cache_image.stat.exists }}"
|
2019-06-29 21:09:20 +00:00
|
|
|
tags:
|
|
|
|
- facts
|
|
|
|
when:
|
|
|
|
- download_force_cache
|
Added file and container image caching (#4828)
* File and container image downloads are now cached localy, so that repeated vagrant up/down runs do not trigger downloading of those files. This is especially useful on laptops with kubernetes runnig locally on vm's. The total size of the cache, after an ansible run, is currently around 800MB, so bandwidth (=time) savings can be quite significant.
* When download_run_once is false, the default is still not to cache, but setting download_force_cache will still enable caching.
* The local cache location can be set with download_cache_dir and defaults to /tmp/kubernetes_cache
* A local docker instance is no longer required to cache docker images; Images are cached to file. A local docker instance is still required, though, if you wish to download images on localhost.
* Fixed a FIXME, wher the argument was that delegate_to doesn't play nice with omit. That is a correct observation and the fix is to use default(inventory_host) instead of default(omit). See ansible/ansible#26009
* Removed "Register docker images info" task from download_container and set_docker_image_facts because it was faulty and unused.
* Removed redundant when:download.{container,enabled,run_once} conditions from {sync,download}_container.yml
* All features of commit d6fd0d2acaec9f53e75d82db30411f96a5bf2cc9 by Timoses <timosesu@gmail.com>, merged May 1st 2019, are included in this patch. Not all code was included verbatim, but each feature of that commit was checked to be working in this patch. One notable change: The actual downloading of the kubeadm images was moved to {download,sync)_container, to enable caching.
Note 1: I considered splitting this patch, but most changes that are not directly related to caching, are a pleasant by-product of implementing the caching code, so splitting would be impractical.
Note 2: I have my doubts about the usefulness of the upload, download and upgrade tags in the download role. Must they remain or can they be removed? If anybody knows, then please speak up.
2019-06-10 18:21:07 +00:00
|
|
|
|
2020-03-05 15:31:39 +00:00
|
|
|
- name: Stop if image not in cache on ansible host when download_force_cache=true
|
|
|
|
assert:
|
2020-03-16 10:34:35 +00:00
|
|
|
that: image_is_cached
|
2020-03-05 15:31:39 +00:00
|
|
|
msg: "Image cache file {{ image_path_cached }} not found for {{ image_reponame }} on localhost"
|
2019-06-29 21:09:20 +00:00
|
|
|
when:
|
|
|
|
- download_force_cache
|
2020-03-05 15:31:39 +00:00
|
|
|
- not download_run_once
|
Added file and container image caching (#4828)
* File and container image downloads are now cached localy, so that repeated vagrant up/down runs do not trigger downloading of those files. This is especially useful on laptops with kubernetes runnig locally on vm's. The total size of the cache, after an ansible run, is currently around 800MB, so bandwidth (=time) savings can be quite significant.
* When download_run_once is false, the default is still not to cache, but setting download_force_cache will still enable caching.
* The local cache location can be set with download_cache_dir and defaults to /tmp/kubernetes_cache
* A local docker instance is no longer required to cache docker images; Images are cached to file. A local docker instance is still required, though, if you wish to download images on localhost.
* Fixed a FIXME, wher the argument was that delegate_to doesn't play nice with omit. That is a correct observation and the fix is to use default(inventory_host) instead of default(omit). See ansible/ansible#26009
* Removed "Register docker images info" task from download_container and set_docker_image_facts because it was faulty and unused.
* Removed redundant when:download.{container,enabled,run_once} conditions from {sync,download}_container.yml
* All features of commit d6fd0d2acaec9f53e75d82db30411f96a5bf2cc9 by Timoses <timosesu@gmail.com>, merged May 1st 2019, are included in this patch. Not all code was included verbatim, but each feature of that commit was checked to be working in this patch. One notable change: The actual downloading of the kubeadm images was moved to {download,sync)_container, to enable caching.
Note 1: I considered splitting this patch, but most changes that are not directly related to caching, are a pleasant by-product of implementing the caching code, so splitting would be impractical.
Note 2: I have my doubts about the usefulness of the upload, download and upgrade tags in the download role. Must they remain or can they be removed? If anybody knows, then please speak up.
2019-06-10 18:21:07 +00:00
|
|
|
|
2019-06-29 21:09:20 +00:00
|
|
|
- name: download_container | Download image if required
|
2020-03-05 15:31:39 +00:00
|
|
|
command: "{{ image_pull_command_on_localhost if download_localhost else image_pull_command }} {{ image_reponame }}"
|
2019-10-17 12:38:39 +00:00
|
|
|
delegate_to: "{{ download_delegate if download_run_once else inventory_hostname }}"
|
2019-06-29 21:09:20 +00:00
|
|
|
delegate_facts: yes
|
|
|
|
run_once: "{{ download_run_once }}"
|
|
|
|
register: pull_task_result
|
|
|
|
until: pull_task_result is succeeded
|
|
|
|
delay: "{{ retry_stagger | random + 3 }}"
|
|
|
|
retries: 4
|
|
|
|
become: "{{ user_can_become_root | default(false) or not download_localhost }}"
|
2021-12-20 08:33:26 +00:00
|
|
|
environment: "{{ proxy_env if container_manager == 'containerd' else omit }}"
|
2019-06-29 21:09:20 +00:00
|
|
|
when:
|
2020-04-10 08:59:47 +00:00
|
|
|
- pull_required or download_run_once
|
2020-03-05 15:31:39 +00:00
|
|
|
- not image_is_cached
|
Added file and container image caching (#4828)
* File and container image downloads are now cached localy, so that repeated vagrant up/down runs do not trigger downloading of those files. This is especially useful on laptops with kubernetes runnig locally on vm's. The total size of the cache, after an ansible run, is currently around 800MB, so bandwidth (=time) savings can be quite significant.
* When download_run_once is false, the default is still not to cache, but setting download_force_cache will still enable caching.
* The local cache location can be set with download_cache_dir and defaults to /tmp/kubernetes_cache
* A local docker instance is no longer required to cache docker images; Images are cached to file. A local docker instance is still required, though, if you wish to download images on localhost.
* Fixed a FIXME, wher the argument was that delegate_to doesn't play nice with omit. That is a correct observation and the fix is to use default(inventory_host) instead of default(omit). See ansible/ansible#26009
* Removed "Register docker images info" task from download_container and set_docker_image_facts because it was faulty and unused.
* Removed redundant when:download.{container,enabled,run_once} conditions from {sync,download}_container.yml
* All features of commit d6fd0d2acaec9f53e75d82db30411f96a5bf2cc9 by Timoses <timosesu@gmail.com>, merged May 1st 2019, are included in this patch. Not all code was included verbatim, but each feature of that commit was checked to be working in this patch. One notable change: The actual downloading of the kubeadm images was moved to {download,sync)_container, to enable caching.
Note 1: I considered splitting this patch, but most changes that are not directly related to caching, are a pleasant by-product of implementing the caching code, so splitting would be impractical.
Note 2: I have my doubts about the usefulness of the upload, download and upgrade tags in the download role. Must they remain or can they be removed? If anybody knows, then please speak up.
2019-06-10 18:21:07 +00:00
|
|
|
|
2020-07-28 08:39:08 +00:00
|
|
|
- name: download_container | Save and compress image
|
|
|
|
shell: "{{ image_save_command_on_localhost if download_localhost else image_save_command }}" # noqa 305 image_save_command_on_localhost contains a pipe, therefore requires shell
|
2020-03-05 15:31:39 +00:00
|
|
|
delegate_to: "{{ download_delegate }}"
|
2019-06-29 21:09:20 +00:00
|
|
|
delegate_facts: no
|
|
|
|
register: container_save_status
|
|
|
|
failed_when: container_save_status.stderr
|
|
|
|
run_once: true
|
|
|
|
become: "{{ user_can_become_root | default(false) or not download_localhost }}"
|
|
|
|
when:
|
2020-03-05 15:31:39 +00:00
|
|
|
- not image_is_cached
|
|
|
|
- download_run_once
|
Added file and container image caching (#4828)
* File and container image downloads are now cached localy, so that repeated vagrant up/down runs do not trigger downloading of those files. This is especially useful on laptops with kubernetes runnig locally on vm's. The total size of the cache, after an ansible run, is currently around 800MB, so bandwidth (=time) savings can be quite significant.
* When download_run_once is false, the default is still not to cache, but setting download_force_cache will still enable caching.
* The local cache location can be set with download_cache_dir and defaults to /tmp/kubernetes_cache
* A local docker instance is no longer required to cache docker images; Images are cached to file. A local docker instance is still required, though, if you wish to download images on localhost.
* Fixed a FIXME, wher the argument was that delegate_to doesn't play nice with omit. That is a correct observation and the fix is to use default(inventory_host) instead of default(omit). See ansible/ansible#26009
* Removed "Register docker images info" task from download_container and set_docker_image_facts because it was faulty and unused.
* Removed redundant when:download.{container,enabled,run_once} conditions from {sync,download}_container.yml
* All features of commit d6fd0d2acaec9f53e75d82db30411f96a5bf2cc9 by Timoses <timosesu@gmail.com>, merged May 1st 2019, are included in this patch. Not all code was included verbatim, but each feature of that commit was checked to be working in this patch. One notable change: The actual downloading of the kubeadm images was moved to {download,sync)_container, to enable caching.
Note 1: I considered splitting this patch, but most changes that are not directly related to caching, are a pleasant by-product of implementing the caching code, so splitting would be impractical.
Note 2: I have my doubts about the usefulness of the upload, download and upgrade tags in the download role. Must they remain or can they be removed? If anybody knows, then please speak up.
2019-06-10 18:21:07 +00:00
|
|
|
|
2019-06-29 21:09:20 +00:00
|
|
|
- name: download_container | Copy image to ansible host cache
|
|
|
|
synchronize:
|
|
|
|
src: "{{ image_path_final }}"
|
|
|
|
dest: "{{ image_path_cached }}"
|
|
|
|
use_ssh_args: "{{ has_bastion | default(false) }}"
|
|
|
|
mode: pull
|
|
|
|
when:
|
2020-03-05 15:31:39 +00:00
|
|
|
- not image_is_cached
|
|
|
|
- download_run_once
|
2019-06-29 21:09:20 +00:00
|
|
|
- not download_localhost
|
2019-08-22 06:38:30 +00:00
|
|
|
- download_delegate == inventory_hostname
|
2020-03-05 15:31:39 +00:00
|
|
|
|
|
|
|
- name: download_container | Upload image to node if it is cached
|
|
|
|
synchronize:
|
|
|
|
src: "{{ image_path_cached }}"
|
|
|
|
dest: "{{ image_path_final }}"
|
|
|
|
use_ssh_args: "{{ has_bastion | default(false) }}"
|
|
|
|
mode: push
|
|
|
|
delegate_facts: no
|
|
|
|
register: upload_image
|
|
|
|
failed_when: not upload_image
|
|
|
|
until: upload_image is succeeded
|
|
|
|
retries: 4
|
|
|
|
delay: "{{ retry_stagger | random + 3 }}"
|
|
|
|
when:
|
|
|
|
- pull_required
|
|
|
|
- download_force_cache
|
|
|
|
|
2021-04-26 16:21:16 +00:00
|
|
|
- name: download_container | Load image into the local container registry
|
2020-07-28 08:39:08 +00:00
|
|
|
shell: "{{ image_load_command }}" # noqa 305 image_load_command uses pipes, therefore requires shell
|
2020-03-05 15:31:39 +00:00
|
|
|
register: container_load_status
|
|
|
|
failed_when: container_load_status is failed
|
|
|
|
when:
|
|
|
|
- pull_required
|
|
|
|
- download_force_cache
|
Added file and container image caching (#4828)
* File and container image downloads are now cached localy, so that repeated vagrant up/down runs do not trigger downloading of those files. This is especially useful on laptops with kubernetes runnig locally on vm's. The total size of the cache, after an ansible run, is currently around 800MB, so bandwidth (=time) savings can be quite significant.
* When download_run_once is false, the default is still not to cache, but setting download_force_cache will still enable caching.
* The local cache location can be set with download_cache_dir and defaults to /tmp/kubernetes_cache
* A local docker instance is no longer required to cache docker images; Images are cached to file. A local docker instance is still required, though, if you wish to download images on localhost.
* Fixed a FIXME, wher the argument was that delegate_to doesn't play nice with omit. That is a correct observation and the fix is to use default(inventory_host) instead of default(omit). See ansible/ansible#26009
* Removed "Register docker images info" task from download_container and set_docker_image_facts because it was faulty and unused.
* Removed redundant when:download.{container,enabled,run_once} conditions from {sync,download}_container.yml
* All features of commit d6fd0d2acaec9f53e75d82db30411f96a5bf2cc9 by Timoses <timosesu@gmail.com>, merged May 1st 2019, are included in this patch. Not all code was included verbatim, but each feature of that commit was checked to be working in this patch. One notable change: The actual downloading of the kubeadm images was moved to {download,sync)_container, to enable caching.
Note 1: I considered splitting this patch, but most changes that are not directly related to caching, are a pleasant by-product of implementing the caching code, so splitting would be impractical.
Note 2: I have my doubts about the usefulness of the upload, download and upgrade tags in the download role. Must they remain or can they be removed? If anybody knows, then please speak up.
2019-06-10 18:21:07 +00:00
|
|
|
|
2019-06-29 21:09:20 +00:00
|
|
|
- name: download_container | Remove container image from cache
|
|
|
|
file:
|
|
|
|
state: absent
|
|
|
|
path: "{{ image_path_final }}"
|
|
|
|
when:
|
|
|
|
- not download_keep_remote_cache
|
Added file and container image caching (#4828)
* File and container image downloads are now cached localy, so that repeated vagrant up/down runs do not trigger downloading of those files. This is especially useful on laptops with kubernetes runnig locally on vm's. The total size of the cache, after an ansible run, is currently around 800MB, so bandwidth (=time) savings can be quite significant.
* When download_run_once is false, the default is still not to cache, but setting download_force_cache will still enable caching.
* The local cache location can be set with download_cache_dir and defaults to /tmp/kubernetes_cache
* A local docker instance is no longer required to cache docker images; Images are cached to file. A local docker instance is still required, though, if you wish to download images on localhost.
* Fixed a FIXME, wher the argument was that delegate_to doesn't play nice with omit. That is a correct observation and the fix is to use default(inventory_host) instead of default(omit). See ansible/ansible#26009
* Removed "Register docker images info" task from download_container and set_docker_image_facts because it was faulty and unused.
* Removed redundant when:download.{container,enabled,run_once} conditions from {sync,download}_container.yml
* All features of commit d6fd0d2acaec9f53e75d82db30411f96a5bf2cc9 by Timoses <timosesu@gmail.com>, merged May 1st 2019, are included in this patch. Not all code was included verbatim, but each feature of that commit was checked to be working in this patch. One notable change: The actual downloading of the kubeadm images was moved to {download,sync)_container, to enable caching.
Note 1: I considered splitting this patch, but most changes that are not directly related to caching, are a pleasant by-product of implementing the caching code, so splitting would be impractical.
Note 2: I have my doubts about the usefulness of the upload, download and upgrade tags in the download role. Must they remain or can they be removed? If anybody knows, then please speak up.
2019-06-10 18:21:07 +00:00
|
|
|
tags:
|
2019-06-29 21:09:20 +00:00
|
|
|
- download
|