The `awx-service` (running at port 30478) results in connection-refused.
It seems like the actual `awx_task` process is running on port 8050, but the k8s-service is created on port 8052:
---
And inside the awx-pod:
---
bash-4.4$ ps -aux
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
awx 1 0.0 0.0 4412 804 ? Ss Apr08 0:20 /tini -- /bin/sh -c /usr/bin/launch_awx.sh
awx 6 0.0 0.0 38076 5060 ? S Apr08 0:00 bash /usr/bin/launch_awx.sh
awx 119 0.0 0.0 106740 25376 ? S Apr08 3:49 /usr/bin/python3.6 /usr/local/bin/supervisord -c /supervisor.conf
awx 122 0.0 0.0 83664 18732 ? S Apr08 0:08 python3 /usr/bin/config-watcher
awx 124 0.0 0.0 47544 12812 ? S Apr08 0:34 /var/lib/awx/venv/awx/bin/uwsgi --socket 127.0.0.1:8050 --module=awx.wsgi:application --vacuum --processes=5 -
awx 125 0.0 0.0 294732 113964 ? S Apr08 6:48 /var/lib/awx/venv/awx/bin/python3 /var/lib/awx/venv/awx/bin/daphne -b 127.0.0.1 -p 8051 --websocket_timeout -1
awx 126 0.0 0.0 299184 113152 ? S Apr08 0:04 /var/lib/awx/venv/awx/bin/uwsgi --socket 127.0.0.1:8050 --module=awx.wsgi:application --vacuum --processes=5 -
awx 127 0.0 0.0 299184 113152 ? S Apr08 0:04 /var/lib/awx/venv/awx/bin/uwsgi --socket 127.0.0.1:8050 --module=awx.wsgi:application --vacuum --processes=5 -
awx 128 0.0 0.0 299184 113152 ? S Apr08 0:04 /var/lib/awx/venv/awx/bin/uwsgi --socket 127.0.0.1:8050 --module=awx.wsgi:application --vacuum --processes=5 -
awx 129 0.0 0.0 299184 113148 ? S Apr08 0:03 /var/lib/awx/venv/awx/bin/uwsgi --socket 127.0.0.1:8050 --module=awx.wsgi:application --vacuum --processes=5 -
awx 130 0.0 0.0 299184 113148 ? S Apr08 0:04 /var/lib/awx/venv/awx/bin/uwsgi --socket 127.0.0.1:8050 --module=awx.wsgi:application --vacuum --processes=5 -
awx 198 0.3 0.0 15680 4436 pts/0 Ss 15:42 0:00 bash
awx 204 0.0 0.0 49348 3880 pts/0 R+ 15:43 0:00 ps -aux
---
However, even after changing service to point to 8052, the `connection refused` issue persists. When running curl inside container on port 8050, it seems to respond fine though. Will appreciate any ideas about this.
The deployment is ElAlto.