[K8s news wrap up Q1-Q2 2025]

A curated update on what’s new in the world of Kubernetes, container orchestration, and cloud-native platforms.Click ▼ on the headlines below to see more details ! ▼ Ingress-NGINX Vulnerabilities (CVE-2025-1097, 1098, 24514, 1974) Wiz.io disclosed four critical RCE vulnerabilities in the Kubernetes Ingress-NGINX controller, allowing unauthenticated attackers to execute code in the controller pod. Over … Read more

Tips and tricks: Kill zombie processes in Linux

In Linux, a zombie process is a terminated process that remains in the process table because its parent process has not yet read its exit status. It occurs when a child process completes but its parent process hasn’t called wait() to retrieve the child’s status. These “defunct” processes consume minimal resources but can clutter the … Read more