mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2024-11-06 05:43:29 +01:00
15 lines
625 B
YAML
15 lines
625 B
YAML
---
|
|
|
|
- name: Ensure Docker repository is uninstalled
|
|
ansible.builtin.apt_repository:
|
|
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) }}"
|
|
|
|
- name: Ensure Docker APT key is uninstalled
|
|
ansible.builtin.apt_key:
|
|
url: https://download.docker.com/linux/{{ ansible_distribution | lower }}/gpg
|
|
state: absent
|
|
become: "{{ k3s_become_for_uninstall | ternary(true, false, k3s_become_for_all) }}"
|