geoserver / geoserver-cloud

Cloud Native GeoServer is GeoServer ready to use in the cloud through dockerized microservices.
http://geoserver.org/geoserver-cloud
Other
244 stars 73 forks source link

Replication Issues with WEBUI Container on Kubernetes #448

Closed TomIraz closed 4 months ago

TomIraz commented 4 months ago

Hello team,

I wanted to report a problem I'm experiencing when trying to replicate the WEBUI service in a Kubernetes environment.

Problem: When trying to create more than one replica of the pod in Kubernetes, I have noticed that the authentication system fails. Despite entering the correct username and password, the system repeatedly redirects me to the login page as if I had never logged in.

groldan commented 4 months ago

Hi, the webui is not supposed to be scaled out. It is the only one that can't, because it depends on the servlet session. Hence, if you scale it out, the gateway will load balance to all available webui pods, but only one of them will have the session open.

I'm closing the issue.