TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Has anyone moved from Kubernetes to Nomad?

15 点作者 WnZ39p0Dgydaz1超过 4 年前
If so, what was your experience?<p>I&#x27;ve been operating a Kubernetes cluster for a while now, and I&#x27;m quite happy with it. It does what I want. However, the complexity cost is quite high. That&#x27;s especially true when developers who without much k8s experience need to interact with a local or staging cluster somehow to debug applications. And of course, the YAML and package management is hell despite (and partly because of) the many templating tools out there.<p>I&#x27;m wondering if Nomad could remove some of that complexity or whether it&#x27;s still early stage and a production setup is just as complex. I&#x27;m also wondering how easy it is to deploy common applications (Postgres, Traefik, Prometheus, etc) on Nomad - easy Helm installations are a big selling point of k8s.

2 条评论

zie超过 4 年前
we use nomad in production, no issues. Way less complex than k8s. We deploy Prometheus out of your list. We use NGINX, not Traefik. PG is deployed but not under Nomad, mostly just from laziness.<p>We run a local instance of send.firefox.com, redis, metabase, docker registry, a speedtest tool, a bunch of batch&#x2F;periodic jobs, some internal custom services, all of our web hosting, etc directly out of nomad.<p>Our CI&#x2F;CD runs make which builds the code, generates .nomad files and runs them, so it&#x27;s super easy to re-deploy, rollback, etc.<p>k8s management on your own hardware is a full-time job. There are 2 of us that do all dev and ops for our product and there is 0% chance we could manage a k8s cluster w&#x2F; only 2 of us, but managing a nomad, consul and vault cluster is easy for us.<p>There are nomad templating tools, but we started using nomad back when it was brand new, so we just used sed for our meagre templating needs. Works a treat, and never saw any value to using some specialized tool(for our needs).<p>Totally recommend checking out nomad.
评论 #24866038 未加载
评论 #24866695 未加载
评论 #24870842 未加载
SkyLinx超过 4 年前
I have been on Kubernetes for over a year and I&#x27;m just a team of one. Besides the initial learning curve it&#x27;s never been a &quot;full time job&quot; like many say it is. I have good automation and I don&#x27;t need to do much maintenance besides upgrades etc. I deploy and manage k8s with Rancher, and that makes life a lot easier.