Python WSGI Server for Kubernetes?
I want to run my Django application in Kubernetes.
In Kubernetes the available ressources could limited, and the amount of CPUs you get with traditional methods could be wrong.
For Go this gets handled with https://github.com/uber-go/automaxprocs
Up to now I use gunicorn, but I could switch to a different wsgi server.
Which wsgi server is recommended to run Django applications in Kubernetes?