ansible-role-k3s/tasks/build/install-k3s.yml

40 lines
865 B
YAML
Raw Normal View History

2019-03-09 21:54:44 +01:00
---
- name: Ensure systemd unit file directory exists
file:
path: "{{ k3s_systemd_unit_directory }}"
state: directory
recurse: true
when: k3s_control_node
2019-03-09 21:54:44 +01:00
- name: Ensure k3s service unit file is present on control plane
template:
src: k3s.service.j2
dest: "{{ k3s_systemd_unit_directory }}/k3s.service"
2019-03-09 21:54:44 +01:00
when: k3s_control_node
notify:
- reload systemd
2019-03-09 21:54:44 +01:00
- meta: flush_handlers
- name: Ensure k3s is symlinked into the installation destinations
file:
src: "{{ k3s_install_dir }}/k3s-{{ k3s_release_version }}"
dest: "{{ k3s_install_dir }}/{{ item }}"
state: link
notify:
- restart k3s
loop:
- k3s
- kubectl
- crictl
- ctr
2019-03-09 21:54:44 +01:00
- name: Ensure k3s control plane is started
systemd:
2019-03-09 21:54:44 +01:00
name: k3s
state: started
enabled: true
scope: "{{ k3s_systemd_context }}"
when: k3s_control_node