ansible-role-k3s/tasks/ensure_control_plane_starte...

17 lines
414 B
YAML
Raw Permalink Normal View History

---
2022-06-15 23:03:39 +02:00
- name: Ensure k3s control plane server is started
ansible.builtin.systemd:
name: k3s
state: started
enabled: "{{ k3s_start_on_boot }}"
scope: "{{ k3s_systemd_context }}"
register: k3s_systemd_start_k3s
2022-06-15 23:03:39 +02:00
until: k3s_systemd_start_k3s is succeeded
retries: 3
delay: 3
failed_when:
- k3s_systemd_start_k3s is not succeeded
- not ansible_check_mode
become: "{{ k3s_become }}"