SSSatya Suvarnamincodeops-devoloper.hashnode.devΒ·Jun 19 Β· 3 min readDay 19- Kubernetes DaemonSets β Running Pods on Every NodeπΉ Introduction In Kubernetes, Deployments and StatefulSets create Pods based on the number of replicas you specify. But what if you need: β One Pod on every node β Automatic deployment on newly added00
SSSatya Suvarnamincodeops-devoloper.hashnode.devΒ·Jun 5 Β· 4 min readDay - 18 Kubernetes StatefulSets β Managing Stateful ApplicationsπΉ Introduction So far in Kubernetes, we've deployed applications using Deployments. Deployments work perfectly for: Web Applications APIs Microservices Stateless Workloads But what about applic00
SSSatya Suvarnamincodeops-devoloper.hashnode.devΒ·May 21 Β· 3 min readDay 17: Kubernetes Persistent Volumes (PV) & Persistent Volume Claims (PVC) β Managing Storage ProperlyπΉ Introduction Containers in Kubernetes are ephemeral by nature. That means π β When a Pod is deleted, its internal data is also lost. But real-world applications need persistent storage for: Databa00
SSSatya Suvarnamincodeops-devoloper.hashnode.devΒ·May 11 Β· 4 min readDay 16: Kubernetes Probes β Liveness, Readiness & Startup Checks ExplainedπΉ Introduction In Kubernetes, deploying a Pod is not enough. π Kubernetes also needs to know: Is the application healthy? Is it ready to receive traffic? Did it start successfully? Without heal00
SSSatya Suvarnamincodeops-devoloper.hashnode.devΒ·May 11 Β· 3 min readDay 15: Kubernetes ConfigMaps & Secrets β Managing Application Configuration SecurelyπΉ Introduction In Kubernetes, applications often need: Database URLs API keys Environment variables Passwords Configuration files But hereβs the challenge π β Hardcoding these values inside containe00