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
8 lines
308 B
YAML
8 lines
308 B
YAML
---
|
|
|
|
- name: Ensure docker is uninstalled using amazon-linux-extras
|
|
command: amazon-linux-extras uninstall docker
|
|
register: uninstall_docker_from_amazon_linux
|
|
changed_when: uninstall_docker_from_amazon_linux.rc == 0
|
|
become: "{{ k3s_become_for_uninstall | ternary(true, false, k3s_become_for_all) }}"
|