mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2024-11-01 08:38:50 +01:00
141b6f2018
Fix issue #25, check k3s_bind_address for readiness check Fix issue #24, become for tasks that require root
12 lines
292 B
YAML
12 lines
292 B
YAML
---
|
|
|
|
- name: Ensure docker is installed using amazon-linux-extras
|
|
command: amazon-linux-extras install docker
|
|
args:
|
|
creates: /etc/docker
|
|
notify:
|
|
- restart docker
|
|
become: "{{ k3s_become_for_package_install | ternary(true, false, k3s_become_for_all) }}"
|
|
|
|
- meta: flush_handlers
|