top of page
Posts


Kubernetes Upgrades - How Not to Mess Up?
Kubernetes Upgrades - How Not to Mess Up? You may have heard about the Reddit Kubernetes upgrade horror story, a 314 minute outage caused...

RNREDDY
Sep 112 min read


Improving Kubernetes Latency with External Traffic Policy and Session Affinity
Improving Kubernetes Latency with External Traffic Policy and Session Affinity When dealing with Kubernetes Services, achieving optimal...

RNREDDY
Sep 112 min read


Why Did My Kubernetes Pod Stop Abruptly?
Why Did My Kubernetes Pod Stop Abruptly? We’ve all been there. Your Pod is running along, doing its job, and then suddenly - it stops. No...

RNREDDY
Sep 102 min read


Why Should You Design Pods for Stateless Applications?
Why Should You Design Pods for Stateless Applications? Yes, you can run stateful workloads in a Kubernetes pod. But it’s not the...

RNREDDY
Sep 102 min read


Autoscaling - HPA vs VPA vs KEDA
Kubernetes Autoscaling - HPA vs VPA vs KEDA Which type of autoscaling should I use for my workload? Can I scale based on message queues...

RNREDDY
Sep 102 min read


Kubernetes Patterns - Part 2
Init Container, Sidecar, Ambassador, Adapter, Controller, Operator Let’s look into a few more crucial patterns every Kubernetes...

RNREDDY
Sep 102 min read


OOMKilled and ImagePullBackOff Simplified
Kubernetes OOMKilled and ImagePullBackOff Simplified Today's use case is about OOMKilled and ImagePullBackOff. Let's take a quick look at...

RNREDDY
Sep 102 min read


Cloud Controller Manager Chicken and Egg Problem
Kubernetes Cloud Controller Manager Chicken and Egg Problem In Kubernetes, there's a lesser known yet frustrating bootstrap paradox - the...

RNREDDY
Sep 103 min read


Kubernetes Security Must Practices
Kubernetes Security Must Practices You know there are tons of content on Kubernetes Security Best practices, the moment it is conceived...

RNREDDY
Sep 102 min read


Kubernetes Patterns - Part 1
Kubernetes Patterns - Part 1 If you've been working with Kubernetes for a while, you know it’s more than just running containers. We...

RNREDDY
Sep 103 min read


Understanding Kubernetes etcd Locks
Understanding Kubernetes etcd Locks Ever had a cluster where everything suddenly felt sluggish? Deployments hang, API calls timeout, and...

RNREDDY
Sep 103 min read


Kubernetes Mistakes Side Effects
This is so relatable, isn’t it? The side effects are so impactful, especially the hidden nature of it, which makes it such a lethal...

RNREDDY
Sep 101 min read


POD Troubleshooting Tactics
Kubernetes POD Troubleshooting Tactics There’s a joke in the industry: Debugged failed pods for 8 hours - No luck. A random restart the...

RNREDDY
Sep 102 min read


Deployment Strategies
Kubernetes Deployment Strategies No surprise that in complex production environments, selecting the right deployment strategy is often a...

RNREDDY
Sep 102 min read


Kubernetes Troubleshooting Commands Every DevOps Engineer Must Know
Kubernetes Troubleshooting Commands Every DevOps Engineer Must Know Day in day out from debugging crashing pods to scaling deployments,...

RNREDDY
Sep 102 min read


Why Containers Are Designed for One Process Only
Why Containers Are Designed for One Process Only Yes, you can run multiple processes inside a container. You can even install systemd,...

RNREDDY
Sep 102 min read


Kubernetes Resource Limits Simplified
Kubernetes Resource Limits Simplified Most people underestimate how much CPU and memory settings affect node pressure, eviction policies,...

RNREDDY
Sep 102 min read


Kubernetes Logs BreakDown
Kubernetes Logs BreakDown In Kubernetes troubleshooting logs are gold. But here is the catch. Not all logs are equal. Not all log...

RNREDDY
Sep 101 min read


Port Forwarding Patterns
Kubernetes Port Forwarding Patterns You're inside a dev cluster, access to the network is restricted, and the service you just deployed...

RNREDDY
Sep 102 min read


Why You Shouldn’t Use :latest Tag
Why You Shouldn’t Use :latest Tag You’ve likely seen it or even used it ‘image: yourapp:latest’ It’s everywhere. Dockerfiles. Helm...

RNREDDY
Sep 102 min read
bottom of page