You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of today, this Django app only provides a way to ensure that a database, configured in your Django project, is reachable. The main use case for this is a Kubernetes Init Container.
Health checks
For the health checks after the startup phase, we usually suggest to implement the Kubernetes probes with the least impact that technically makes sense. For Python application running uWSGI this is a check on the socket, e.g.
However, if someone for some specific reason wanted to do checks deeper into the Django application stack we may need to provide an appropriate way to call the application in a way that consumes few resources. (A management command will probably not do for this use case.)
As of today, this Django app only provides a way to ensure that a database, configured in your Django project, is reachable. The main use case for this is a Kubernetes Init Container.
Health checks
For the health checks after the startup phase, we usually suggest to implement the Kubernetes probes with the least impact that technically makes sense. For Python application running uWSGI this is a check on the socket, e.g.
However, if someone for some specific reason wanted to do checks deeper into the Django application stack we may need to provide an appropriate way to call the application in a way that consumes few resources. (A management command will probably not do for this use case.)
Other background reading
The text was updated successfully, but these errors were encountered: