ansible-role-k3s/tasks/teardown/docker/debian/uninstall-prerequisites.yml

16 lines
625 B
YAML
Raw Normal View History

2020-02-25 18:29:39 +01:00
---
- name: Ensure Docker repository is uninstalled
ansible.builtin.apt_repository:
2020-02-25 18:29:39 +01:00
filename: docker-ce
repo: "deb https://download.docker.com/linux/{{ ansible_distribution | lower }} {{ ansible_distribution_release }} stable"
update_cache: false
state: absent
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
ansible.builtin.apt_key:
2020-02-25 18:29:39 +01:00
url: https://download.docker.com/linux/{{ ansible_distribution | lower }}/gpg
state: absent
become: "{{ k3s_become_for_uninstall | ternary(true, false, k3s_become_for_all) }}"