mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2024-12-02 13:25:00 +01:00
14 lines
340 B
YAML
14 lines
340 B
YAML
---
|
|
|
|
- name: Ensure docker is installed using amazon-linux-extras
|
|
ansible.builtin.command:
|
|
cmd: 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) }}"
|
|
|
|
- name: Flush Handlers
|
|
meta: flush_handlers
|