2019-03-09 21:54:44 +01:00
|
|
|
---
|
|
|
|
|
2020-10-19 21:26:12 +02:00
|
|
|
- name: Ensure config directory exists
|
2020-12-12 15:27:59 +01:00
|
|
|
ansible.builtin.file:
|
2020-10-19 21:26:12 +02:00
|
|
|
path: "{{ k3s_config_file | dirname }}"
|
|
|
|
state: directory
|
|
|
|
mode: 0755
|
|
|
|
become: "{{ k3s_become_for_install_dir | ternary(true, false, k3s_become_for_all) }}"
|
|
|
|
|
2019-12-21 18:11:30 +01:00
|
|
|
- name: Ensure systemd unit file directory exists
|
2020-12-12 15:27:59 +01:00
|
|
|
ansible.builtin.file:
|
2020-12-05 22:56:28 +01:00
|
|
|
path: "{{ k3s_systemd_unit_dir }}"
|
2019-12-21 18:11:30 +01:00
|
|
|
state: directory
|
2020-09-15 19:10:25 +02:00
|
|
|
mode: 0755
|
2020-10-19 21:26:12 +02:00
|
|
|
become: "{{ k3s_become_for_systemd | ternary(true, false, k3s_become_for_all) }}"
|
|
|
|
|
2020-12-05 22:56:28 +01:00
|
|
|
- name: Ensure data directory exists when not using the default
|
2020-12-12 15:27:59 +01:00
|
|
|
ansible.builtin.file:
|
2020-12-19 15:02:30 +01:00
|
|
|
path: "{{ k3s_runtime_config['data-dir'] | default(k3s_data_dir) }}"
|
2020-12-05 22:56:28 +01:00
|
|
|
state: directory
|
|
|
|
mode: 0755
|
|
|
|
become: "{{ k3s_become_for_data_dir | ternary(true, false, k3s_become_for_all) }}"
|
|
|
|
when: k3s_runtime_config is defined
|
|
|
|
and "data-dir" in k3s_runtime_config
|
2020-12-19 15:02:30 +01:00
|
|
|
and k3s_runtime_config['data-dir'] != k3s_data_dir
|
2020-12-05 22:56:28 +01:00
|
|
|
|
2020-10-21 18:22:41 +02:00
|
|
|
- include_tasks: install-k3s-node.yml
|
|
|
|
when: ((k3s_control_node and k3s_controller_count | length == 1)
|
|
|
|
or (k3s_primary_control_node and k3s_controller_count | length > 1)) and not ansible_check_mode
|
2019-03-09 21:54:44 +01:00
|
|
|
|
|
|
|
- meta: flush_handlers
|
|
|
|
|
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
|
|
|
|
2019-03-09 21:54:44 +01:00
|
|
|
- name: Ensure k3s control plane 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
|
|
|
|
enabled: true
|
2019-12-21 18:11:30 +01:00
|
|
|
scope: "{{ k3s_systemd_context }}"
|
2020-01-11 23:42:29 +01:00
|
|
|
when: (k3s_control_node and k3s_controller_count | length == 1)
|
|
|
|
or (k3s_primary_control_node and k3s_controller_count | length > 1)
|
2020-04-22 16:42:45 +02:00
|
|
|
become: "{{ k3s_become_for_systemd | ternary(true, false, k3s_become_for_all) }}"
|