Skip to content
daniel@cosenza:~/blog
SRE & DevOps

SRE & DevOps posts

Containers, orchestration, cloud infrastructure, and the practices that keep production reliable.

SRE & DevOpsHow-To July 11, 2026 3 min read

How to Configure Pod Disruption Budgets in Kubernetes

A complete walkthrough setting PodDisruptionBudgets so voluntary disruptions — node drains, cluster upgrades — never take down more replicas of a service than it can actually tolerate at once.

#howto#kubernetes#pdb
Read more
SRE & DevOpsFix July 7, 2026 3 min read

Fixing OOMKilled Containers with Correct Resource Limits

A container gets killed repeatedly with reason OOMKilled, even though the application 'shouldn't' need that much memory. Here's how to find its actual peak usage and set limits that reflect reality instead of guesses.

#fix#kubernetes#memory
Read more
SRE & DevOpsFix July 6, 2026 2 min read

Fixing a Kubernetes Node Stuck NotReady

kubectl get nodes shows a node stuck in NotReady state, and pods are being evicted from it. Here's how to check kubelet, container runtime, and network plugin health in the right order.

#fix#kubernetes#nodes
Read more
SRE & DevOpsFix July 5, 2026 3 min read

Fixing Terraform Provider Version Conflicts

terraform init fails with incompatible provider version constraints, or plan produces unexpected changes after an update. Here's how to read the constraint error and pin versions correctly across a team.

#fix#terraform#providers
Read more
SRE & DevOpsNews July 4, 2026 2 min read

HashiCorp's License Change Sparks the OpenTofu Fork

HashiCorp moved Terraform to the Business Source License on August 10, 2023; within six weeks, a community fork called OpenTF (soon renamed OpenTofu) had gathered 33,000 GitHub stars and joined the Linux Foundation.

#news#terraform#opentofu
Read more
SRE & DevOpsNews July 3, 2026 2 min read

Kubernetes Removes Dockershim in Version 1.24

Deprecated in December 2020 and fully removed in the April 2022 release of Kubernetes 1.24, dockershim's removal ended direct Docker Engine support in kubelet — a roughly 16-month migration window the project deliberately built in.

#news#kubernetes#dockershim
Read more
SRE & DevOpsNews July 2, 2026 2 min read

Docker Donates containerd to the Cloud Native Computing Foundation

Accepted as an incubating CNCF project on March 29, 2017, containerd split out the core container-runtime functionality from Docker itself — becoming the shared runtime foundation much of the ecosystem, including Kubernetes, later standardized on.

#news#containerd#cncf
Read more