HSHaiman Sherinkubernetes-expalined-simply.hashnode.dev·Jun 8 · 7 min readKustomize in Kubernetes: Managing Multiple Environments with TransformersIntroduction One of the biggest challenges in Kubernetes is managing the same application across multiple environments such as Development, Staging, and Production. At first, teams often solve this by00
HSHaiman Sherinkubernetes-expalined-simply.hashnode.dev·May 31 · 5 min readKubernetes API Versions, CRDs, Operators & Helm Explained Custom Resource Definitions, Custom Controllers, Operators, and Helm. At first, these concepts can feel disconnected. But once you understand the Kubernetes API model, everything starts to make sense.00
HSHaiman Sherinkubernetes-expalined-simply.hashnode.dev·May 28 · 6 min readKubernetes Authentication, RBAC & Admission Controllers Explained In Kubernetes security, there are 3 major questions: Who are you? → Authentication What can you do? → Authorization Should this request be modified or denied? → Admission Controllers This post co00
HSHaiman Sherinkubernetes-expalined-simply.hashnode.dev·May 24 · 5 min readKubernetes Storage, PV, PVC & StorageClass Explained Containers and Pods are designed to be temporary. But real applications: databases analytics systems user uploads logs need data to survive even after containers or Pods are deleted. In this pos00
HSHaiman Sherinkubernetes-expalined-simply.hashnode.dev·May 15 · 5 min readKubernetes Deployments, Rollouts, Rollbacks & Jobs ExplainedDeployments and application update strategies. This is where Kubernetes becomes truly powerful for production workloads. In this post, I’ll cover: Deployments Rollouts Rollback Rolling Updates B00