Hi All, I tried my approach of "faking out" the AWXbackup/Awxrestore use case.
I believe I deleted the postgres PVC and the awx-demo "CR's" by deleting the PVC `kubectl delete pvc postgres-13-awx-demo-postgres-13-0 -n awx`. but it only ever went to "Terminating" status. I also deleted the awx-demo deployment. Then copied of the backup files on the my minikube's host
bpadmin@minikube:~/RESTORE/KOBO$ date ; kubectl get pods -n awx
Wed 19 Apr 2023 09:43:04 AM PDT
NAME READY STATUS RESTARTS AGE
awx-demo-postgres-13-0 1/1 Running 0 36m
awx-operator-controller-manager-7d79f6f96d-r2gr7 2/2 Running 3 (70m ago) 15h
bpadmin@minikube:~/RESTORE/KOBO$ date ; kubectl get pods -n awx
Wed 19 Apr 2023 09:43:11 AM PDT
NAME READY STATUS RESTARTS AGE
awx-demo-postgres-13-0 1/1 Running 0 36m
awx-operator-controller-manager-7d79f6f96d-r2gr7 2/2 Running 3 (70m ago) 15h
restore1-db-management 0/1 ContainerCreating 0 4s
bpadmin@minikube:~/RESTORE/KOBO$ date ; kubectl get pods -n awx
Wed 19 Apr 2023 09:44:04 AM PDT
NAME READY STATUS RESTARTS AGE
awx-demo-757b674d65-gskgf 4/4 Running 0 35s
awx-demo-postgres-13-0 1/1 Running 0 37m
awx-operator-controller-manager-7d79f6f96d-r2gr7 2/2 Running 3 (71m ago) 15h
restore1-db-management 1/1 Running 0 56s
Then I try to see what's going on on my EE container ...
bpadmin@minikube:~/RESTORE/KOBO$ kubectl exec -it awx-demo-757b674d65-gskgf -n awx -c awx-demo-ee -- bash
bash-5.1$ ls -l /var/lib/awx/projects/
total 0
bash-5.1$ ls -la /var/lib/awx/projects/
total 8
drwxrwxrwx 2 root root 4096 Apr 19 16:43 .
drwxr-xr-x 3 root root 4096 Apr 19 16:43 ..
bash-5.1$ command terminated with exit code 137
bpadmin@minikube:~/RESTORE/KOBO$ date ; kubectl get pods -n awx
Wed 19 Apr 2023 09:44:52 AM PDT
NAME READY STATUS RESTARTS AGE
awx-demo-postgres-13-0 1/1 Running 0 38m
awx-operator-controller-manager-7d79f6f96d-r2gr7 2/2 Running 3 (71m ago) 15h
restore1-db-management 1/1 Running 0 104s
bpadmin@minikube:~/RESTORE/KOBO$
And this cycle keeps happening. Is there someway I can tell if the restore will work or if something has gone awry?