Evicting Kubernetes Pods with API Eviction
API-initiated eviction lets you gracefully terminate Pods via the Eviction API. It respects PodDisruptionBudgets and terminationGracePeriodSeconds. Use CLI or client-go to trigger eviction subresource calls. Dry-run lets you test policies. Build event-driven controllers for automated remediation.
Image Volumes graduate to beta in Kubernetes v1.33!
Kubernetes v1.33 promotes Image Volumes from alpha to beta. Image Volumes let you mount image layers as native volumes inside pods.
Example: Local Kubernetes cluster with Cluster-level PodSecurity admission set to baseline
Learn to create a local kind Kubernetes cluster with cluster-level PodSecurity admission enforcing the baseline profile by default.
Advertise Extended Node Resources for a Kubernetes Node
Extended resources let you declare these node-level assets so the scheduler can allocate them. This article shows static and dynamic methods to configure and use extended node resources.
Change the Reclaim Policy of a PersistentVolume in Kubernetes
Reclaim policy determines what happens to a PersistentVolume after its PersistentVolumeClaim is deleted. This article shows how to change reclaim policy from Delete to Retain or Recycle.
What Are Projected Volumes In Kubernetes
Explore Kubernetes projected volumes. Learn to merge secrets, ConfigMaps, Downward API, and tokens into a single Pod directory with YAML examples.
Best practices for Kubernetes Secrets
Kubernetes Secrets carry sensitive data. Mismanagement risks exposure. This article shows robust patterns for secret lifecycle, provisioning, access control and integration. Follow these steps to secure your cluster and applications.
Ingress-nginx CVE-2025-1974: All You Need to Know
Learn about CVE-2025-1974, a buffer overflow in ingress-nginx Lua module. Understand impact, exploit path, and patch steps for v1.11.5 and v1.12.1 to secure your cluster.
Configure Quality of Service for Pods in Kubernetes
Kubernetes uses Quality of Service (QoS) classes to decide pod eviction under resource pressure. Assigning correct requests and limits controls reliability and node stability.