ansible-community / awx-operator-helm

Helm chart for the AWX operator.
https://ansible-community.github.io/awx-operator-helm/
GNU General Public License v3.0
25 stars 8 forks source link

Specify private registry for images #17

Open mesenger opened 1 month ago

mesenger commented 1 month ago

Hi, I would need to specify location for container images to be fetched from my private registry. I am able to do that for Operator itself inside template: templates/deployment-awx-operator-controller-manager.yaml: image: quay.io/ansible/awx-operator:2.19.0

But how can I do the same for AWX deployment itself, for image: quay.io/ansible/awx-ee:latest ?

schen1 commented 1 month ago

Hi @mesenger,

Thanks for reaching out.

In the values file, you could for example useAWX.spec.image. The same is true for the the Execution Environments with AWX.spec.ee_images.

The full reference of the CRD is available in the following link.

I hope that answers your question.