mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2024-12-14 14:50:20 +01:00
77 lines
2.1 KiB
YAML
77 lines
2.1 KiB
YAML
---
|
|
|
|
- name: Ensure k3s is linked into the installation destination
|
|
ansible.builtin.file:
|
|
src: "{{ k3s_install_dir }}/k3s-{{ k3s_release_version }}"
|
|
dest: "{{ k3s_install_dir }}/{{ item }}"
|
|
state: "{{ 'hard' if k3s_install_hard_links else 'link' }}"
|
|
force: "{{ k3s_install_hard_links }}"
|
|
mode: 0755
|
|
loop:
|
|
- k3s
|
|
- kubectl
|
|
- crictl
|
|
- ctr
|
|
when: not ansible_check_mode
|
|
notify:
|
|
- restart k3s
|
|
become: "{{ k3s_become }}"
|
|
|
|
- name: Ensure k3s config file exists
|
|
ansible.builtin.template:
|
|
src: config.yaml.j2
|
|
dest: "{{ k3s_config_file }}"
|
|
mode: 0644
|
|
notify:
|
|
- reload systemd
|
|
- restart k3s
|
|
become: "{{ k3s_become }}"
|
|
|
|
- name: Ensure cluster token is present when pre-defined
|
|
block:
|
|
- name: Ensure the cluster token file location exists
|
|
ansible.builtin.file:
|
|
path: "{{ k3s_token_location | dirname }}"
|
|
state: directory
|
|
mode: 0755
|
|
become: "{{ k3s_become }}"
|
|
|
|
- name: Ensure k3s cluster token file is present
|
|
ansible.builtin.template:
|
|
src: cluster-token.j2
|
|
dest: "{{ k3s_token_location }}"
|
|
mode: 0600
|
|
become: "{{ k3s_become }}"
|
|
notify:
|
|
- restart k3s
|
|
when: k3s_control_token is defined
|
|
|
|
- name: Ensure k3s service unit file is present
|
|
ansible.builtin.template:
|
|
src: k3s.service.j2
|
|
dest: "{{ k3s_systemd_unit_dir }}/k3s.service"
|
|
mode: 0644
|
|
notify:
|
|
- reload systemd
|
|
- restart k3s
|
|
become: "{{ k3s_become }}"
|
|
|
|
- name: Ensure k3s killall script is present
|
|
ansible.builtin.template:
|
|
src: k3s-killall.sh.j2
|
|
dest: "/usr/local/bin/k3s-killall.sh"
|
|
mode: 0700
|
|
become: "{{ k3s_become }}"
|
|
when:
|
|
- k3s_runtime_config is defined
|
|
- ("rootless" not in k3s_runtime_config or not k3s_runtime_config.rootless)
|
|
|
|
- name: Ensure k3s uninstall script is present
|
|
ansible.builtin.template:
|
|
src: k3s-uninstall.sh.j2
|
|
dest: "/usr/local/bin/k3s-uninstall.sh"
|
|
mode: 0700
|
|
become: "{{ k3s_become }}"
|
|
when:
|
|
- k3s_runtime_config is defined
|
|
- ("rootless" not in k3s_runtime_config or not k3s_runtime_config.rootless)
|