ansible-role-k3s/handlers/main.yml
Xan Manning f2a3f75f08 Added some validation steps, fixed issue with checksum, introducing rootless
as an option, however this is experimental in both K3s and this role.
2019-12-22 18:54:25 +00:00

20 lines
317 B
YAML

---
- name: reload systemd
systemd:
daemon_reload: true
scope: "{{ k3s_systemd_context }}"
- name: restart k3s
systemd:
name: k3s
state: restarted
scope: "{{ k3s_systemd_context }}"
enabled: true
- name: restart docker
systemd:
name: docker
state: restarted
enabled: true