Hacker News new | ask | show | jobs
by mr-karan 1957 days ago
Author here. Hm, now that you point this out, I do get your point. However you can't run multiple different Pods in a deployment (you can run multiple containers in a Pod), that's why a Job isn't really comparable to a ReplicaSet.

I could very well be wrong, but this is my understanding.

1 comments

I think the tricky part is Nomad merges replica count + definition into Group, while K8s separates Pod/RS/Deployment (and uses RS to orchestrate upgrades, which I think Nomad handles on its own somehow?).

Job ~= Deployment

Group ~= Replicaset/Pod combined

Task ~= container in pod