ansible-role-k3s/tasks/install-k3s.yml
Xan Manning 5e39160ed9 Added a number of extra options to configure K3s in systemd unit file.
Testing:
  - Added docker networking, ensure that test output is verbose.
  - Fix build for AmazonLinux 2
  - No-deploy flag test added
2019-11-02 22:19:33 +00:00

32 lines
643 B
YAML

---
- name: Ensure k3s service unit file is present on control plane
template:
src: k3s.service.j2
dest: /etc/systemd/system/k3s.service
when: k3s_control_node
notify:
- reload systemd
- 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
- name: Ensure k3s control plane is started
service:
name: k3s
state: started
enabled: true
when: k3s_control_node