Hello, I am back on this project and still blocked, I tried to add the ports to my deployment.yml :
ports:
- containerPort: 80
- containerPort: 8080
and to my service.yml :
- port: 8080
name: websocket
targetPort: 8080
protocol: TCP
but if I try to start with :
php artisan reverb:start
I have this error :
In TcpServer.php line 184:
Failed to listen on "tcp://0.0.0.0:8080": Address in use (EADDRINUSE)
so I removed it, now I have :
/app # php artisan reverb:start
INFO Starting server on 0.0.0.0:8080 (api.springcard.net).
But how can I test the websocket with postman for example ?