Hi All, hope someone can help me out.
I installed AWX in Minikube multiple times.
One of them I could access AWX UI following the instructions.
The next day I was not able to access UI so I started from scratch.
minikube delete
miniikube start and then all the awx deploy. (by the way I installed the latest awx-operator version 2.6.0)
So right now all is up and running but I can’t get into AWX UI.
What am I missing?
kubectl get service -n awx
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
awx-operator-controller-manager-metrics-service ClusterIP 10.110.136.93 8443/TCP 33m
awx-postgres-13 ClusterIP None 5432/TCP 32m
awx-service NodePort 10.103.75.196 80:30904/TCP 32m
[ec2-user@ip-10-196-152-159 awx-operator]$ kubectl get service -n default
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
kubernetes ClusterIP 10.96.0.1 443/TCP 40m
netstat -an |grep -i 30904
tcp 0 0 0.0.0.0:30904 0.0.0.0:* LISTEN
curl http://192.168.49.2:30904
curl: (7) Failed to connect to 192.168.49.2 port 30904 after 0 ms: Couldn’t connect to server
Port forwarding running and minikube tunnel also.
kubectl port-forward -n awx svc/awx-service --address 0.0.0.0 30904:80
Thanks in advance.