Hello, I have deployed AWX with the help of KIND clusters and Currently AWX portal is opening on local host but i want to use the server ip to access the AWX portal.
Below is the o/p of deployment file.
I don’t have experience with KIND so there may be some other config that you need but have you tried going to https://<ip_of_KIIND_node>:30902?
The KIND documentation seems to point an additional config needed at cluster creation time if you’re using the Docker Desktop application but that’s not needed if you’re just running Docker from the CLI. The extra port mappings also appear to be needed if you’re traffic is originating from outside the host that is running KIND. kind – Configuration
Is 10.96.192.110 on your local network? Kubernetes and Docker both setup internal only networks to allow pods/containers to communicate but those addresses aren’t generally accessible from the outside. That 10.96… address looks like one of those internal networks.
If you feel comfortable, you can also post the output of “ip addr” on the KIND host and we can verify.
Glad you got it working! One thing to remember is that if the host reboots, that you will probably have to rerun the kubectl port-forward command. Before you move to production, you may want to test this and look into if KIND can handle this port-forwarding within a config that will survive reboot or create a start-up task (crontab, systemd service, etc…) on the host to run the port-forward automatically.