Docker Swarm vs. Kubernetes in 2026
thedecipherist.com
Docker Swarm vs. Kubernetes in 2026
1–10 of 31 posts
Re: Docker Swarm vs. Kubernetes in 2026
#2> The problem is that 99% of teams don't need any of those knobs.
I keep hoping for a Docker Swarm revival. It's the right size for small-to-medium-size deployments with normal requirements.
Re: Docker Swarm vs. Kubernetes in 2026
#3is where the author is just wrong:
- abstracts away ssh - makes it pretty unnecessary
- rbac multi tenancy
- better automations
- orchestating more than one cluster
- better infra as code
- provisions are as good as you make them, if you don't want them only use limits.
- large mind share, bitnami (was) great
I use k3s for my home network because it's simple and easy, thinking that k8s is overengineered just plain wrong - it's just different especially if you compare different versions of k8s designed for different things where for ex: k3s bundles csi, cni, ctl, ingress for you.
I actually struggle with compose ('orchestration' alternative) significantly more since it usually has complicated workarounds to missing features.
I have been running 5 k8s-flavored clusters for more than half a decade between 1 to 40 nodes.
Re: Docker Swarm vs. Kubernetes in 2026
#4> If you need granular control over every tiny aspect of your container orchestration — network policies, pod scheduling, resource quotas, multi-tenant isolation, custom admission controllers, autoscaling on custom metrics — Kubernetes gives you knobs for all of it. > The problem is that 99% of teams don't need any of those knobs. I keep hoping for a Docker Swarm revival. It's the right size for small-to-medium-size…
Re: Docker Swarm vs. Kubernetes in 2026
#5Docker Swarm doesn't have the mindshare for effective hiring
Re: Docker Swarm vs. Kubernetes in 2026
#6I think one of the killer features of k8s is how simple it is to write clients that manipulate the cluster itself, even when they’re running from inside of it. Give them the right role etc and you’re done. You don’t even have to write something as complete as an actual controller/operator - but that’s also an option too
Re: Docker Swarm vs. Kubernetes in 2026
#7https://k3s.io/ is my new goto for this Docker Swarm doesn't have the mindshare for effective hiring
Re: Docker Swarm vs. Kubernetes in 2026
#8Re: Docker Swarm vs. Kubernetes in 2026
#9Re: Docker Swarm vs. Kubernetes in 2026
#10Can you control the docker swarm API from within a container that is running inside of it? I think one of the killer features of k8s is how simple it is to write clients that manipulate the cluster itself, even when they’re running from inside of it. Give them the right role etc and you’re done. You don’t even have to write something as complete as an actual controller/operator - but that’s also an option too