Understanding ReplicaSet vs. StatefulSet vs. DaemonSet vs. Deployments
abhisman.notion.site
Understanding ReplicaSet vs. StatefulSet vs. DaemonSet vs. Deployments
1–10 of 30 posts
Re: Understanding ReplicaSet vs. StatefulSet vs. DaemonSet vs. Deployments
#2Re: Understanding ReplicaSet vs. StatefulSet vs. DaemonSet vs. Deployments
#3Re: Understanding ReplicaSet vs. StatefulSet vs. DaemonSet vs. Deployments
#4Doesn't seem to offer more insights than the Kubernetes docs.
Re: Understanding ReplicaSet vs. StatefulSet vs. DaemonSet vs. Deployments
#5Doesn't seem to offer more insights than the Kubernetes docs.
For example "Persistent Storage: StatefulSets provide persistent storage to their pods through Kubernetes PersistentVolumes".
The thing is that STS doesn't do that. That's actually in POD definition.
Re: Understanding ReplicaSet vs. StatefulSet vs. DaemonSet vs. Deployments
#6Can't say I've ever felt rewarded for using Kubernetes, literally or metaphorically.
Re: Understanding ReplicaSet vs. StatefulSet vs. DaemonSet vs. Deployments
#7Doesn't seem to offer more insights than the Kubernetes docs.
Totally. Plus it's misguiding readers with different functionality and use cases. For example "Persistent Storage: StatefulSets provide persistent storage to their pods through Kubernetes PersistentVolumes". The thing is that STS doesn't do that. That's actually in POD definition.
> why isn't a statefulset just a deployment/pod with PVC mounted?
* StatefulSets provide predictable pod names and hostnames (pod-0, pod-1)
* StatefulSets handle pods sequentially (0→1→2), ensuring proper cluster initialization.
* StatefulSets maintain a consistent pod-to-PVC mapping even after pod rescheduling.
* StatefulSets delete pods in reverse order,
Re: Understanding ReplicaSet vs. StatefulSet vs. DaemonSet vs. Deployments
#8> Understanding the nuances and distinctions between these key concepts becomes crucial as you navigate the complex — yet rewarding — waters of container orchestration. Can't say I've ever felt rewarded for using Kubernetes, literally or metaphorically.
Re: Understanding ReplicaSet vs. StatefulSet vs. DaemonSet vs. Deployments
#9Earlier quoted context omitted.
Totally. Plus it's misguiding readers with different functionality and use cases. For example "Persistent Storage: StatefulSets provide persistent storage to their pods through Kubernetes PersistentVolumes". The thing is that STS doesn't do that. That's actually in POD definition.
I had no idea... probably shows I haven't hit an advanced enough use case. > why isn't a statefulset just a deployment/pod with PVC mounted? * StatefulSets provide predictable pod names and hostnames (pod-0, pod-1) * StatefulSets handle pods sequentially (0→1→2), ensuring proper cluster initialization. * StatefulSets maintain a consistent pod-to-PVC mapping even after pod rescheduling. * StatefulSets delete pods in r…