- name: cmdline.txt become: true copy: src: resources/k3s/{{ item }} dest: /boot owner: root group: root mode: '0755' with_items: - cmdline.txt - name: iptables become: true shell: > iptables -F - name: create k3s dir file: path: ~/k3s-setup state: directory - name: Install k3s become: true shell: > curl -sfL https://get.k3s.io | K3S_KUBECONFIG_MODE=”644” sh - - name: Neustart reboot: