mirror of
https://github.com/ansible/awx.git
synced 2026-01-22 06:58:06 -03:30
- `settings/minikube.py` gets imported conditionally, when the environment variable `AWX_KUBE_DEVEL` is set. In this imported file, we set `BROADCAST_WEBSOCKET_PORT = 8013`, but 8013 is only used in the docker-compose dev environment. In Kubernetes environments, 8052 is used for everything. This is hardcoded awx-operator's ConfigMap. - Also rename `minikube.py` because it is used for every kind of development Kube environment, including Kind. Signed-off-by: Rick Elrod <rick@elrod.me>
5 lines
160 B
Python
5 lines
160 B
Python
BROADCAST_WEBSOCKET_SECRET = '🤖starscream🤖'
|
|
BROADCAST_WEBSOCKET_PORT = 8052
|
|
BROADCAST_WEBSOCKET_VERIFY_CERT = False
|
|
BROADCAST_WEBSOCKET_PROTOCOL = 'http'
|