Category: k8s
-
Graceful pod termination by fixing SIGTERM handling and using PreStop hook
If you’re running services in Kubernetes, using “target-type: ip” for ALB and noticing 5xx errors during pod terminations…
-
Optimizing Rust images with scratch base image
About scratch image The scratch image, as its name suggests, is nothing but a empty layer in your image. This line will be the starting point for building container image. The following line will be forming the initial filesystem layer in your image.To this understand container image layer better, take a look at this Docker…