2019-03-09 21:54:44 +01:00
|
|
|
---
|
|
|
|
|
2023-05-13 15:49:39 +02:00
|
|
|
- name: Ensure directories exist
|
|
|
|
ansible.builtin.include_tasks: ensure_directories.yml
|
2020-12-21 20:14:52 +01:00
|
|
|
loop: "{{ k3s_ensure_directories_exist }}"
|
|
|
|
loop_control:
|
|
|
|
loop_var: directory
|
2020-12-05 22:56:28 +01:00
|
|
|
|
2023-05-13 15:49:39 +02:00
|
|
|
- name: Ensure installed node
|
|
|
|
ansible.builtin.include_tasks: ensure_installed_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
|
2022-05-02 18:13:12 +02:00
|
|
|
ansible.builtin.meta: flush_handlers
|
2019-03-09 21:54:44 +01:00
|
|
|
|
2023-05-13 15:49:39 +02:00
|
|
|
- name: Ensure installed node | k3s_build_cluster
|
|
|
|
ansible.builtin.include_tasks: ensure_installed_node.yml
|
2020-11-29 21:10:42 +01:00
|
|
|
when: k3s_build_cluster
|
2019-03-10 15:53:52 +01:00
|
|
|
|
2021-12-20 22:06:10 +01:00
|
|
|
- name: Determine if the systems are already clustered
|
|
|
|
ansible.builtin.stat:
|
|
|
|
path: "{{ k3s_token_location }}"
|
|
|
|
register: k3s_token_cluster_check
|
|
|
|
|
2023-05-13 15:49:39 +02:00
|
|
|
- name: Ensure control plane started with {{ ansible_service_mgr }}
|
|
|
|
ansible.builtin.include_tasks: ensure_control_plane_started_{{ ansible_service_mgr }}.yml
|
2022-06-15 23:03:39 +02:00
|
|
|
when: (k3s_control_node and k3s_controller_list | length == 1)
|
|
|
|
or (k3s_primary_control_node and k3s_controller_list | length > 1)
|
|
|
|
or k3s_token_cluster_check.stat.exists
|