Hi
I try to deploy AWX 11.2.0 with Kubernetes the deployment seems to be OK but I have an issue when I try to access to the UI.
Note : I want to deploy AWX on 2 nodes from my Cluster K8S ( 1 master and 2 nodes)
In my inventory file I have set this :
[tower]
myHost ansible_ssh_user=root ansible_ssh_private_key_file=/root/.ssh/…
# myHost is not an IP adress in this case
# myHost is the hostname of my MASTER k8s
[all:vars]
ansible_python_interpreter=“/usr/bin/env python3”
kubernetes_context=kubernetes-admin@kubernetes
kubernetes_namespace=awx
kubernetes_ingress_hostname=myHost.myDomain.com
awx_task_hostname=awx
awx_web_hostname=awxweb
postgres_data_dir=“~/.awx/pgdocker”
host_port=80
…and some conf for proxy
And after the deployment, the container AWX are up on my 2 nodes ( kubernetes_deployment_replica_size: 2 ) but I have this :
kubectl get svc --namespace awx
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
awx-web-svc NodePort 10.100.xx.yyy 80:30913/TCP 3d21h
kubectl get ing --namespace awx
NAME HOSTS ADDRESS PORTS AGE
awx-web-svc myHost.myDomain.com 80 3d21h
Test URL : myHost.myDomain.com
404 page not found
Could you help me to the web UI access ?
Thanks in advance