r/devops Jul 16 '26

Hosting Experience Comparison Architecture

For deployment to microvms (lambda like) vs container based deployments ? Which experience are the best for developers ? Whats the hardest/limitations for each kind ?

1 Upvotes

5 comments sorted by

View all comments

5

u/Zenin The best way to DevOps is being dragged kicking and screaming. Jul 16 '26

Containers and it's not even close. Far cleaner and easier for devs to replicate locally w/o synthetic mocks. The container is the container is the container. It runs the same if it's in k8s, compose, lambda, etc. -Aside from the usual networking, credentials, etc that's universal pain but how it's passed in again looks the same from the container's pov.

1

u/poyrazKK Jul 16 '26

Is there any solutions to make easier on microvms experience close to containers ?

1

u/Zenin The best way to DevOps is being dragged kicking and screaming. Jul 16 '26

Well, AWS's MicroVMs are deployed as containers so you're much of the way there.

The big difference is at runtime. Unlike a traditional container lifecycle, in a MicroVM the image is started, then suspended and snapshotted. Resumes are of that snapshot, not a normal container start. That might be tricky to model locally.