2019-03-09 21:54:44 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Ensure Docker prerequisites are installed
|
|
|
|
apt:
|
2020-02-26 21:05:38 +01:00
|
|
|
name:
|
|
|
|
- apt-transport-https
|
|
|
|
- ca-certificates
|
|
|
|
- curl
|
|
|
|
- "{{ 'gnupg2' if ansible_distribution == 'Debian' else 'gnupg-agent' }}"
|
|
|
|
- software-properties-common
|
2019-03-09 21:54:44 +01:00
|
|
|
state: present
|
|
|
|
register: ensure_docker_prerequisites_installed
|
|
|
|
until: ensure_docker_prerequisites_installed is succeeded
|
|
|
|
retries: 3
|
|
|
|
delay: 10
|
2020-05-25 17:25:09 +02:00
|
|
|
become: "{{ k3s_become_for_package_install | ternary(true, false, k3s_become_for_all) }}"
|
2019-03-09 21:54:44 +01:00
|
|
|
|
|
|
|
- name: Ensure Docker APT key is present
|
|
|
|
apt_key:
|
|
|
|
url: https://download.docker.com/linux/{{ ansible_distribution | lower }}/gpg
|
|
|
|
state: present
|
2020-05-20 19:50:58 +02:00
|
|
|
become: "{{ k3s_become_for_package_install | ternary(true, false, k3s_become_for_all) }}"
|
2019-03-09 21:54:44 +01:00
|
|
|
|
|
|
|
- name: Ensure Docker repository is installed and configured
|
|
|
|
apt_repository:
|
|
|
|
filename: docker-ce
|
|
|
|
repo: "deb https://download.docker.com/linux/{{ ansible_distribution | lower }} {{ ansible_distribution_release }} stable"
|
|
|
|
update_cache: true
|
2020-05-20 19:50:58 +02:00
|
|
|
become: "{{ k3s_become_for_package_install | ternary(true, false, k3s_become_for_all) }}"
|