2020-02-25 18:29:39 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Ensure Docker repository is uninstalled
|
|
|
|
apt_repository:
|
|
|
|
filename: docker-ce
|
|
|
|
repo: "deb https://download.docker.com/linux/{{ ansible_distribution | lower }} {{ ansible_distribution_release }} stable"
|
|
|
|
update_cache: false
|
|
|
|
state: absent
|
2020-05-20 19:50:58 +02:00
|
|
|
become: "{{ k3s_become_for_uninstall | ternary(true, false, k3s_become_for_all) }}"
|
2020-02-25 18:29:39 +01:00
|
|
|
|
|
|
|
- name: Ensure Docker APT key is uninstalled
|
|
|
|
apt_key:
|
|
|
|
url: https://download.docker.com/linux/{{ ansible_distribution | lower }}/gpg
|
|
|
|
state: absent
|
2020-05-20 19:50:58 +02:00
|
|
|
become: "{{ k3s_become_for_uninstall | ternary(true, false, k3s_become_for_all) }}"
|