-
|
So I can deploy a trame paraview app to Kubernetes in GCP and it works fine when I overwrite the wslink functionality by overriding the main entrypoint for the trame docker image, using a custom command in my deployment. Now I would like to give each user there own session per browser tab in GCP. This works great in docker compose locally but when I push to using Kubernetes I cannot get a browser to connect using wslink and the browser times out.
So before I got too far
For example in service I have this and the ingress I have and in deploy i have this Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Yes you can make trame / wslink work with Kubernetes.
Did you check the logs? Usually it contains information that will help you troubleshoot why the session did not start. |
Beta Was this translation helpful? Give feedback.
ahh I was looking or the complicated answer and you were right. Logs show I was getting this error
OSError: [Errno 99] error while attempting to bind on address ('::1', 9500, 0, 0): cannot assign requested addressI should be binding to 0.0.0.0. Correct?