2020-02-25 18:29:39 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Ensure Docker repository is removed
|
2020-12-12 15:27:59 +01:00
|
|
|
ansible.builtin.yum_repository:
|
2020-02-25 18:29:39 +01:00
|
|
|
name: docker-ce
|
|
|
|
description: Docker CE Repository
|
|
|
|
baseurl: https://download.docker.com/linux/{{ ansible_distribution | lower }}/{{ ansible_distribution_major_version }}/$basearch/stable
|
|
|
|
gpgkey: https://download.docker.com/linux/{{ ansible_distribution | lower }}/gpg
|
2020-02-26 21:05:38 +01:00
|
|
|
enabled: false
|
2020-02-25 18:29:39 +01:00
|
|
|
gpgcheck: true
|
|
|
|
state: absent
|
|
|
|
when: ansible_distribution | lower not in ['amazon']
|
2020-05-20 19:50:58 +02:00
|
|
|
become: "{{ k3s_become_for_uninstall | ternary(true, false, k3s_become_for_all) }}"
|