When running your ASP.NET core container/application you probably noticed that the first requests take longer on average. The cause of the longer request can be normal application loading and/or logic you have written that must initialize on your first call. It would be nice to warm up your container before a customer call is handled by your container. Kubernetes gives you the possibility to use a readiness probe to check and warm up your application.
Continue reading “ASP .NET Core docker container warmup and liveness probes”ASP .NET Core docker container warmup and liveness probes
Use a readiness probe to warmup your docker container and check the health of your container with a health probe