--- - name: Disable swap on Raspberries hosts: kubernetes roles: - common become: yes gather_facts: no tasks: - name: Stop swap service ansible.builtin.shell: dphys-swapfile swapoff - name: Disable swap service ansible.builtin.shell: systemctl disable dphys-swapfile - name: Delete swap file ansible.builtin.shell: dphys-swapfile uninstall - name: Reboot ansible.builtin.reboot: test_command: uptime