20 lines
770 B
YAML
20 lines
770 B
YAML
---
|
|
# - name: Move storage to local_lvm
|
|
# ansible.builtin.command: qm disk move "{{ k3s_vmid }}" scsi0 local-lvm
|
|
# ignore_errors: true
|
|
|
|
# - name: Resize storage
|
|
# ansible.builtin.command: qm disk resize "{{ k3s_vmid }}" scsi0 +"{{ k3s_disk }}G"
|
|
|
|
- name: Allow ipv4 forwarding
|
|
ansible.builtin.shell: "sysctl net.ipv4.ip_forward=1"
|
|
|
|
- name: Allow ipv6 forwarding
|
|
ansible.builtin.shell: "sysctl net.ipv6.conf.all.forwarding=1"
|
|
|
|
- name: Uncomment ipv4 forward line on /etc/sysctl.conf
|
|
ansible.builtin.shell: "sed -i 's/#net.ipv4.ip_forward=1/net.ipv4.ip_forward=1/g' /etc/sysctl.conf"
|
|
|
|
- name: Uncomment ipv6 forward line on /etc/sysctl.conf
|
|
ansible.builtin.shell: "sed -i 's/#net.ipv6.conf.all.forwarding=1/net.ipv6.conf.all.forwarding=1/g' /etc/sysctl.conf"
|