1
0
Fork 0
home-stack-ansible/roles/k3s/tasks/main.yml

16 lines
449 B
YAML
Raw Normal View History

2021-12-15 01:55:52 +00:00
- name: Install required packages
apt:
name:
2022-02-14 16:59:15 +00:00
- open-iscsi # required by longhorn
- nfs-common # required for nfs support
2023-02-20 15:37:36 +00:00
- iptables # required for docker-in-docker workload support
2022-02-14 16:59:15 +00:00
# https://longhorn.io/kb/troubleshooting-volume-with-multipath/
- name: Disable multipath (for longhorn volumes)
copy:
src: multipath.conf
dest: /etc/multipath.conf
notify: Restart multipathd
2021-08-25 04:33:56 +00:00
2021-12-15 01:55:52 +00:00
- include_tasks: '{{ platform }}.yml'