A simple lab to spin up a working AWX install.
The lab uses vagrant to spin up a single node k3s and deploys ansible awx.
What you need to get started!
vagrant up
vagrant ssh k3s
Start by entering the k3s node via ssh, then
$ sudo k3s kubectl get pods --namespace awx
NAME READY STATUS RESTARTS AGE
awx-postgres-0 1/1 Running 0 12m
awx-b5f6cf4d4-dmbm8 4/4 Running 0 12m
To enter the web interface you'll navigate to http://awx.k3s.test, to make this work please enter the following into your /etc/hosts file
192.168.55.150 awx.k3s.test
You can use variables found in ansible/host_vars/k3s.yml to easily change the default settings. It is also possible to change the file ansible/templates/awx.yml.j2 with settings from the awx-operator
Author: Thorstein B. Nordby