ansible-role-k3s/tasks/build/install-docker-amazon.yml

12 lines
292 B
YAML
Raw Normal View History

---
- 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