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

15 lines
383 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
# 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'