VVagishaintech-geek-vagisha.hashnode.dev·Jul 16 · 7 min readThe Kubernetes Secrets Illusion: Are Your Secrets Actually Safe?Imagine building a state-of-the-art bank vault. You install biometric scanners, reinforced steel walls, and a multi-layered surveillance system. But right before opening day, you put the master key in00
SKSonal Kumarindevopswork.hashnode.dev·Jun 30 · 10 min readThe Silent Infrastructure Drift That Terraform Couldn't SeeHow a Kubernetes immutable field, a 6-year-old Terraform SDK bug, and an unmaintained community provider combined to create invisible state drift — and the DevOps detective work that uncovered it. It00
JFJoel Fernandesinblog.joel-fernandes.com·Jun 22 · 17 min readWhy EKS Blue-Green Upgrades Scare Teams More Than They ShouldHaving interviewed with companies of all sizes from smaller startups to large enterprises, and the conversation around EKS tends to follow a familiar pattern. We talk about control plane upgrades, nod00
GCGoodness Chris-Ugariingoodiec.hashnode.dev·Apr 16 · 16 min readSecuring Pod-to-Pod Communication on Amazon EKS with CiliumBy default, every pod in an EKS cluster can talk to every other pod. There are no restrictions. If an attacker compromises one pod, they have a free path to reach your databases, internal APIs, and ev00
DAdumpala Abhignainunderstanding-kubernetes-statefulset.hashnode.dev·Feb 17 · 17 min read🚀 Kubernetes Hands-On Project: Deployment vs StatefulSet on Amazon EKS🔎 Key Differences Between Deployment and StatefulSet FeatureDeploymentStatefulSet Pod IdentityRandom pod names (no stable identity)Stable, predictable pod names (e.g., mysql-0) Persistent StorageNo guaranteed dedicated storageEach pod gets i...00
LGLavish Guptainlavishgupta.hashnode.dev·Feb 16 · 5 min readUnderstanding Kubernetes ArchitectureKubernetes is everywhere today. Whether you deploy applications on AWS EKS, Azure AKS, or Google GKE, Kubernetes is the system managing your containers behind the scenes. If you are starting with Kubernetes, the hardest part is not running commands. ...00
SSShyamala Sinshyamsdevsecops.hashnode.dev·Jan 24 · 3 min readEKS Cluster OperationsStep 1: Pre-Upgrade bash# Check current state aws eks describe-cluster --name prod-cluster --query "cluster.version" kubectl get nodes -o wide # Verify kubelet alignment eksctl get addon --cluster prod-cluster -o table # Validate HA control plane (...00
SSShyamala Siddaramaiahinshysdevsecops.hashnode.dev·Jan 24 · 3 min readEKS Cluster OperationsStep 1: Pre-Upgrade bash# Check current state aws eks describe-cluster --name prod-cluster --query "cluster.version" kubectl get nodes -o wide # Verify kubelet alignment eksctl get addon --cluster prod-cluster -o table # Validate HA control plane (...00
KVKandlagunta Venkata Siva Niranjan Reddyinkkdevops.hashnode.dev·Jan 4 · 32 min readBuilding a Secure DevSecOps CI/CD Pipeline for a Spring Boot Application Using Jenkins, Snyk, SonarQube, Docker, Trivy, and AWS EKS1. Overview In today’s fast-paced software development world, speed alone is not enough. Applications must be secure, reliable, and production-ready before they ever reach users. This is where DevSecO00
RRRasika Rajendra Deshmukhindevops-cicd-automation-aws-eks.hashnode.dev·Jan 5 · 4 min read🚀 Building a Production-Grade CI/CD Pipeline on AWS EKS with Zero DowntimeIntroduction In this blog, I want to share my end-to-end DevOps capstone project where I designed and implemented a fully automated CI/CD pipeline on AWS EKS, enabling zero-downtime deployments using Kubernetes rolling updates. The goal of this proje...00