I am pretty new to Kubernetes and installing the AWX tower for the first time with K8s.
I am really confused which images are used for which containers and which pods these containers belongs to and what are their respective images? Please correct if my understanding below is right.
AWX operator spins up following pods with resp images in their links
pod1: awx-task; containers: web, rsyslog, redis
pod2: awx-web; containers: redis, task, rsyslog, ee
And I have following defined in my custom resource file
ee_images:
- name: {name}
image: https://quay.io/repository/ansible/awx-ee?tab=tags&tag=latest
init_container_image: {https://quay.io/repository/ansible/awx-ee?tab=tags&tag=latest}
init_container_image_version: latest
control_plane_ee_image: {https://quay.io/repository/ansible/awx-ee?tab=tags&tag=latest}
image: {https://quay.io/repository/ansible/awx?tab=tags&tag=19.5.1}
image_version: {tag}
Your help is really appreciated. TIA