mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2024-11-05 09:17:36 +01:00
141b6f2018
Fix issue #25, check k3s_bind_address for readiness check Fix issue #24, become for tasks that require root
14 lines
547 B
YAML
14 lines
547 B
YAML
---
|
|
|
|
- name: Ensure Docker repository is removed
|
|
yum_repository:
|
|
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
|
|
enabled: false
|
|
gpgcheck: true
|
|
state: absent
|
|
when: ansible_distribution | lower not in ['amazon']
|
|
become: "{{ k3s_become_for_uninstall | ternary(true, false, k3s_become_for_all) }}"
|