AWX Backup and Restore

How do you know when the backup is actually complete?

kubectl get awxbackup -o yaml returns:

(or gist for readability gist:2a0e5df0f6ad3fd3f1d6ff7d6ddc4833 (github.com))

You should see a successful / failure on the most recent status of the backup object. Since yours is still in “running”, it is still not complete. You should take a look at the operator logs via

kubectl logs deployments/awx-operator-controller-manager -c awx-manager -f

which should reveal more info about the backup role

AWX Team