test playbook to install nginx
https://docs.ansible.com/ansible/2.5/user_guide/playbooks_best_practices.html#directory-layout
ansible-galaxy install -r requirements.yml -p roles
ansible-playbook main.yml
Alternative, create containers in minikube, and expose, and add to inventory file.
minikube start
kubectl run debian --image=debian:latest -ndefault --port 22 --command -- sleep 1200
kubectl run centos --image=centos:latest -ndefault --port 22 --command -- sleep 1200
kubectl expose deployment debian --type=NodePort --name=debian-svc
kubectl expose deployment centos --type=NodePort --name=centos-svc
minikube ip
192.168.99.100