2019-03-09 21:54:44 +01:00
|
|
|
---
|
|
|
|
|
2020-07-25 15:03:53 +02:00
|
|
|
- name: Ensure k3s is linked into the installation destination on the contol plane
|
2020-05-31 12:42:02 +02:00
|
|
|
file:
|
|
|
|
src: "{{ k3s_install_dir }}/k3s-{{ k3s_release_version }}"
|
2020-09-17 22:01:20 +02:00
|
|
|
dest: "{{ k3s_install_dir }}/{{ item }}"
|
2020-07-25 15:03:53 +02:00
|
|
|
state: "{{ 'hard' if k3s_install_hard_links else 'link' }}"
|
|
|
|
force: "{{ k3s_install_hard_links }}"
|
2020-09-15 19:10:25 +02:00
|
|
|
mode: 0755
|
2020-09-17 22:01:20 +02:00
|
|
|
loop:
|
|
|
|
- k3s
|
|
|
|
- kubectl
|
|
|
|
- crictl
|
|
|
|
- ctr
|
2020-07-25 18:39:01 +02:00
|
|
|
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
|
2020-05-31 12:42:02 +02:00
|
|
|
notify:
|
|
|
|
- restart k3s
|
|
|
|
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
|
|
|
|
file:
|
|
|
|
path: "{{ k3s_systemd_unit_directory }}"
|
|
|
|
state: directory
|
2020-09-15 19:10:25 +02:00
|
|
|
mode: 0755
|
2019-12-21 18:11:30 +01:00
|
|
|
|
2019-03-09 21:54:44 +01:00
|
|
|
- name: Ensure k3s service unit file is present on control plane
|
|
|
|
template:
|
|
|
|
src: k3s.service.j2
|
2019-12-21 18:11:30 +01:00
|
|
|
dest: "{{ k3s_systemd_unit_directory }}/k3s.service"
|
2020-09-15 19:10:25 +02:00
|
|
|
mode: 0644
|
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)
|
2019-03-09 21:54:44 +01:00
|
|
|
notify:
|
2019-10-01 22:31:35 +02:00
|
|
|
- reload systemd
|
2020-05-31 12:42:02 +02:00
|
|
|
- restart k3s
|
2020-04-22 16:42:45 +02:00
|
|
|
become: "{{ k3s_become_for_systemd | ternary(true, false, k3s_become_for_all) }}"
|
2019-03-09 21:54:44 +01:00
|
|
|
|
|
|
|
- meta: flush_handlers
|
|
|
|
|
2020-02-25 18:29:39 +01:00
|
|
|
- name: Ensure k3s killall script is present on all nodes
|
|
|
|
template:
|
|
|
|
src: k3s-killall.sh.j2
|
|
|
|
dest: "/usr/local/bin/k3s-killall.sh"
|
2020-02-26 21:05:38 +01:00
|
|
|
mode: 0700
|
2020-04-22 16:42:45 +02:00
|
|
|
become: "{{ k3s_become_for_usr_local_bin | ternary(true, false, k3s_become_for_all) }}"
|
2020-02-25 18:29:39 +01:00
|
|
|
|
|
|
|
- name: Ensure k3s uninstall script is present on all nodes
|
|
|
|
template:
|
|
|
|
src: k3s-uninstall.sh.j2
|
|
|
|
dest: "/usr/local/bin/k3s-uninstall.sh"
|
2020-02-26 21:05:38 +01:00
|
|
|
mode: 0700
|
2020-04-22 16:42:45 +02:00
|
|
|
become: "{{ k3s_become_for_usr_local_bin | ternary(true, false, k3s_become_for_all) }}"
|
2020-02-25 18:29:39 +01:00
|
|
|
|
2020-07-25 15:03:53 +02:00
|
|
|
- name: Ensure k3s is linked into the installation destinations across all nodes
|
2019-03-10 15:53:52 +01:00
|
|
|
file:
|
|
|
|
src: "{{ k3s_install_dir }}/k3s-{{ k3s_release_version }}"
|
|
|
|
dest: "{{ k3s_install_dir }}/{{ item }}"
|
2020-07-25 15:03:53 +02:00
|
|
|
state: "{{ 'hard' if k3s_install_hard_links else 'link' }}"
|
|
|
|
force: "{{ k3s_install_hard_links }}"
|
2020-09-15 19:10:25 +02:00
|
|
|
mode: 0755
|
2019-03-10 15:53:52 +01:00
|
|
|
notify:
|
|
|
|
- restart k3s
|
|
|
|
loop:
|
|
|
|
- k3s
|
|
|
|
- kubectl
|
|
|
|
- crictl
|
2019-10-26 23:49:48 +02:00
|
|
|
- ctr
|
2020-07-25 18:39:01 +02:00
|
|
|
when: not ansible_check_mode
|
2020-04-22 16:42:45 +02:00
|
|
|
become: "{{ k3s_become_for_install_dir | ternary(true, false, k3s_become_for_all) }}"
|
2019-03-10 15:53:52 +01:00
|
|
|
|
2019-03-09 21:54:44 +01:00
|
|
|
- name: Ensure k3s control plane is started
|
2019-12-21 18:11:30 +01:00
|
|
|
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) }}"
|