Installing awx without internet access

Hello,

I’m trying to install awx 13 on a host without internet access. The way I was doing it in the past is I had some automation in place that was downloading the images from docker hub on a build server, then moving them to the awx server and loading them there.
Now with awx 13 I see there’s only one image on docker hub. So I did the same thing.
But the issue is the management pod is not starting. It looks like it’s trying to download an image (which obviously it can’t since there’s no public access). But I don’t see any management pod image on docker hub. Actually, I don’t remember ever being a management pod image even before when awx was split into awx-web, awx-task etc. And the management pod was starting successfully back then.

Regards,
Adrian

I found the issue. In deployment.yml.j2 and management-pod.yml.j2 replace imagePullPolicy: Always with IfNotPresent or Never.