ansible-role-k3s/tasks/build/install-docker-prerequisites-debian.yml

30 lines
1.1 KiB
YAML
Raw Normal View History

2019-03-09 21:54:44 +01:00
---
- name: Ensure Docker prerequisites are installed
apt:
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
become: "{{ k3s_become_for_package_install | ternary(true, false, k3s_become_for_all) }}"
2019-03-09 21:54:44 +01:00
until: ensure_docker_prerequisites_installed is succeeded
retries: 3
delay: 10
- name: Ensure Docker APT key is present
apt_key:
url: https://download.docker.com/linux/{{ ansible_distribution | lower }}/gpg
state: present
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
become: "{{ k3s_become_for_package_install | ternary(true, false, k3s_become_for_all) }}"