- Install Ubuntu Server 18.0.4.3 LTS to your server.
- Server IP address is assumed to
192.168.0.3
- RTX 2080 Ti is required
- Install Ansible to the server
$ sudo apt install ansible
ssh-copy-id -i /path/to/your_public_key 192.168.0.3
$ ansible -i inventory.ini all -m ping
192.168.0.3 | SUCCESS => {
"changed": false,
"ping": "pong"
}
$ ansible-playbook -i inventory.ini main.yml --become --ask-become-pass