Do you mirror the docker and quay container images repos internally? If so here are the adjustments that we had to make to point to our internal images.
awx-demo.yml
---
kind: AWX
metadata:
name: awx-demo
spec:
service_type: nodeport
# default nodeport_port is 30080
control_plane_ee_image: '{YOUR_INTERNAL}/ansible/awx-ee'
image: '{YOUR_INTERNAL}/ansible/awx'
image_version: '21.3.0'
init_container_image: '{YOUR_INTERNAL}/centos/centos'
init_container_image_version: 'stream8'
nodeport_port: 30080
postgres_image: {YOUR_INTERNAL}/library/postgres
postgres_image_version: 12
redis_image: '{YOUR_INTERNAL}/library/redis'
redis_image_version: '7'
kustomize build . > my-awx-demo.yml
In that local file(my-awx-demo.yml), we had to change 2 of the image to internal.
On line 1010.
image: {YOUR_INTERNAL}/kubebuilder/kube-rbac-proxy:v0.8.0
and on line 1030
image: {YOUR_INTERNAL}/ansible/awx-operator:0.25.0
kubectl apply -f my-awx-demo.yml
Hope this helps
Mitch