ansible-role-k3s/tasks/ensure_installed.yml

39 lines
1.2 KiB
YAML
Raw Normal View History

2019-03-09 21:54:44 +01:00
---
2021-06-22 21:47:58 +02:00
- include_tasks: ensure_directories.yml
loop: "{{ k3s_ensure_directories_exist }}"
loop_control:
loop_var: directory
2021-06-22 21:47:58 +02:00
- include_tasks: ensure_installed_node.yml
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
- name: Flush Handlers
meta: flush_handlers
2019-03-09 21:54:44 +01:00
2021-06-22 21:47:58 +02:00
- include_tasks: ensure_installed_node.yml
2020-11-29 21:10:42 +01:00
when: k3s_build_cluster
- name: Determine if the systems are already clustered
ansible.builtin.stat:
path: "{{ k3s_token_location }}"
register: k3s_token_cluster_check
2021-02-27 20:02:49 +01:00
- name: Ensure k3s initial control plane server is started
ansible.builtin.systemd:
2019-03-09 21:54:44 +01:00
name: k3s
state: started
enabled: "{{ k3s_start_on_boot }}"
scope: "{{ k3s_systemd_context }}"
register: k3s_systemd_start_k3s
failed_when:
- k3s_systemd_start_k3s is not succeeded
- not ansible_check_mode
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
become: "{{ k3s_become_for_systemd | ternary(true, false, k3s_become_for_all) }}"