- hosts: odroid_cluster name: Install docker become: true become_user: root tasks: - name: Install docker ansible.builtin.apt: name: docker.io state: present - name: Install telnet ansible.builtin.apt: name: telnet state: present - name: Install net-tools ansible.builtin.apt: name: net-tools state: present - name: Install curl! ansible.builtin.apt: name: curl state: present - name: Install deps... ansible.builtin.apt: name: - python3-pip - python3-dev