2019-03-09 21:54:44 +01:00
|
|
|
---
|
|
|
|
|
2020-12-21 20:14:52 +01:00
|
|
|
- include_tasks: install-k3s-directories.yml
|
|
|
|
loop: "{{ k3s_ensure_directories_exist }}"
|
|
|
|
loop_control:
|
|
|
|
loop_var: directory
|
2020-12-05 22:56:28 +01:00
|
|
|
|
2020-10-21 18:22:41 +02:00
|
|
|
- include_tasks: install-k3s-node.yml
|
2021-02-16 16:46:01 +01:00
|
|
|
when:
|
|
|
|
- ((k3s_control_node and k3s_controller_list | length == 1)
|
|
|
|
or (k3s_primary_control_node and k3s_controller_list | length > 1))
|
|
|
|
- not ansible_check_mode
|
2019-03-09 21:54:44 +01:00
|
|
|
|
2021-03-14 17:29:14 +01:00
|
|
|
- name: Flush Handlers
|
|
|
|
meta: flush_handlers
|
2019-03-09 21:54:44 +01:00
|
|
|
|
2020-10-21 18:22:41 +02:00
|
|
|
- include_tasks: install-k3s-node.yml
|
2020-11-29 21:10:42 +01:00
|
|
|
when: k3s_build_cluster
|
2019-03-10 15:53:52 +01:00
|
|
|
|
2021-02-27 20:02:49 +01:00
|
|
|
- name: Ensure k3s initial control plane server is started
|
2020-12-12 15:27:59 +01:00
|
|
|
ansible.builtin.systemd:
|
2019-03-09 21:54:44 +01:00
|
|
|
name: k3s
|
|
|
|
state: started
|
2021-01-30 18:57:50 +01:00
|
|
|
enabled: "{{ k3s_start_on_boot }}"
|
2019-12-21 18:11:30 +01:00
|
|
|
scope: "{{ k3s_systemd_context }}"
|
2021-02-28 17:45:38 +01:00
|
|
|
register: k3s_systemd_start_k3s
|
|
|
|
failed_when:
|
|
|
|
- k3s_systemd_start_k3s is not succeeded
|
|
|
|
- not ansible_check_mode
|
2020-12-21 20:14:52 +01:00
|
|
|
when: (k3s_control_node and k3s_controller_list | length == 1)
|
|
|
|
or (k3s_primary_control_node and k3s_controller_list | length > 1)
|
2020-04-22 16:42:45 +02:00
|
|
|
become: "{{ k3s_become_for_systemd | ternary(true, false, k3s_become_for_all) }}"
|