Nomad

Nomad is an easy-to-use, flexible, and performant workload orchestrator that can deploy a mix of microservice, batch, containerized, and non-containerized applications. Nomad is easy to operate and scale and has native Consul and Vault integrations. (by hashicorp)

Nomad Alternatives

Similar projects and alternatives to Nomad

  1. kubernetes

    Production-Grade Container Scheduling and Management

  2. AppSignal

    AppSignal knows why the f*#k it crashed. Stop vibe-debugging. Every exception, every backtrace, grouped so you see patterns, not noise.

    AppSignal logo
  3. terraform

    Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned.

  4. podman

    433 Nomad VS podman

    Podman: A tool for managing OCI containers and pods.

  5. Portainer

    353 Nomad VS Portainer

    Making Docker and Kubernetes management easy.

  6. k3s

    338 Nomad VS k3s

    Lightweight Kubernetes

  7. traefik

    The Cloud Native Application Proxy

  8. Vault

    190 Nomad VS Vault

    A tool for secrets management, encryption as a service, and privileged access management

  9. Kargo

    Kargo - optimize your multi-stage deployment pipelines using GitOps. Kargo automates promotion across dev, staging, and prod with approval gates and verification. Open source, built by the team behind Argo CD. Download now.

    Kargo logo
  10. k9s

    167 Nomad VS k9s

    🐶 Kubernetes CLI To Manage Your Clusters In Style!

  11. homebrew-core

    🍻 Default and OSS formulae (built-from-source packages) for the package manager for everywhere

  12. kamal

    100 Nomad VS kamal

    Deploy web apps anywhere.

  13. consul

    66 Nomad VS consul

    Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure.

  14. harvester

    Open source hyperconverged infrastructure (HCI) software

  15. hcl

    50 Nomad VS hcl

    HCL is the HashiCorp configuration language.

  16. openbao

    27 Nomad VS openbao

    OpenBao is a software solution to manage, store, and distribute sensitive data including secrets, certificates, and keys.

  17. uncloud

    17 Nomad VS uncloud

    A lightweight tool for deploying and managing containerised applications across a network of Docker hosts. Bridging the gap between Docker and Kubernetes ✨

  18. wander

    A terminal app/TUI for HashiCorp Nomad (by robinovitch61)

  19. Rundeck

    26 Nomad VS Rundeck

    Enable Self-Service Operations: Give specific users access to your existing tools, services, and scripts

  20. Cloud Foundry

    Discontinued Deprecated: Cloud Foundry Release

  21. serf

    2 Nomad VS serf

    Service orchestration and management tool.

  22. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better Nomad alternative or higher similarity.

Nomad discussion

Log in or Post with

Nomad reviews and mentions

Posts with mentions or reviews of Nomad. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2026-03-17.
  • Show HN: Antfly: Distributed, Multimodal Search and Memory and Graphs in Go
    9 projects | news.ycombinator.com | 17 Mar 2026
  • Lightweight tool for deploying containerised applications across servers
    18 projects | news.ycombinator.com | 3 Dec 2025
    Their license does not allow you to modify it and then offer it as a service to others: https://github.com/hashicorp/nomad/blob/main/LICENSE

    You can't really do anything with it except work for Hashicorp for free, or create a fork that nobody is allowed to use unless they self-host it.

  • Terraform, Ansible, Pulumi? The DevOps tooling stack that didn’t burn me out
    2 projects | dev.to | 28 Aug 2025
    Nomad by HashiCorp
  • Cracking the Vault: How we found zero-day flaws in HashiCorp Vault
    2 projects | news.ycombinator.com | 7 Aug 2025
    you could mitigate this with mTLS, but then that breaks vault/nomad integration as they don't support mTLS for that, and I was told to pound sand on their issue tracker.

    https://github.com/hashicorp/nomad/issues/24970

    https://discuss.hashicorp.com/t/how-to-use-mtls-with-nomad-w...

  • IBM Completes Acquisition of HashiCorp
    5 projects | news.ycombinator.com | 27 Feb 2025
    20k+ nodes and 200k+ allocs. To be fair, Kubernetes cannot support this large of a cluster.

    Most of my issues with it aren't related to the scale though. I wasn't involved in the operations of the cluster, I was just a user of Nomad trying to run a few thousand stateful allocs. Without custom resources and custom controllers, managing stateful services was a pain in the ass. Critical bugs would also often take years to get fixed. I had lots of fun getting paged in the middle of the night because 2 allocs would suddenly decide they now have the same index (https://github.com/hashicorp/nomad/issues/10727)

  • Dear friend, you have built a Kubernetes
    15 projects | news.ycombinator.com | 24 Nov 2024
    https://github.com/hashicorp/nomad/blob/v1.6.0/website/conte... seems to have existed since before the license rug-pull. However I'm open to there being some miscommunication because https://developer.hashicorp.com/nomad/docs/glossary doesn't mention the word "control" and the word "host" could mean any number of things in this context
  • Nomad: Simple, flexible scheduler, orchestrator to deploy and manage containers
    1 project | news.ycombinator.com | 24 Nov 2024
  • Faster, Easier Deployments: How We Simplified Our Infrastructure with Nomad in 15 Hours (Goodbye, Kubernetes!)
    6 projects | dev.to | 11 Aug 2024
    Nomad: The Oasis in Our Infrastructure Desert
  • Building a highly-available web service without a database
    7 projects | news.ycombinator.com | 9 Aug 2024
    > I should have just used on-disk mode from the start, but only now know better.

    Yeah, I saw the recent post about reducing rqlite disk space usage. Using the on-disk sqlite as both the FSM and the Raft snapshot makes a lot of sense here. I'm curious whether you've had concerns about write amplification though? Because we have only the periodic Raft snapshots and the FSM is in-memory, during high write volumes we're only really hammering disk with the Raft logs.

    > Do you find it in the field much with Nomad? I've managed to introduce new Raft Entry types very infrequently during rqlite's 10-years of development, only once did someone hit it in the field with rqlite.

    My understanding is that rqlite Raft entries are mostly SQL statements (is that right?). Where Nomad is somewhat different (and probably closer to the OP) is that the Raft entries are application-level entries. For entries that are commands like "stop this job"[0] upgrades are simple.

    The tricky entries are where the entry is "upsert this large deeply-nested object that I've serialized", like the Job or Node (where the workloads run). The typical bug here is you've added a field way down in the guts of one of these objects that's a pointer to a new struct. When old versions deserialize the message they ignore the new field and that's easy to reason about. But if the leader is still on an old version and the new code deserializes the old object, you need to make sure you're not missing any nil pointer checks. Without sum types enforced at compile time (i.e. Option/Maybe), we have to catch all these via code review and a lot of tedious upgrade testing.

    > it requires discipline on the part of the end-users too.

    Oh for sure. Nomad runs into some commercial realities here around how much discipline we can demand from end-users. =)

    [0] https://github.com/hashicorp/nomad/blob/v1.8.2/nomad/fsm.go#...

  • We migrated onto K8s in less than 12 months
    6 projects | news.ycombinator.com | 8 Aug 2024
  • A note from our sponsor - SaaSHub
    www.saashub.com | 16 Sep 2026
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic Nomad repo stats
113
16,898
9.7
5 days ago

hashicorp/nomad is an open source project licensed under GNU General Public License v3.0 or later which is an OSI approved license.

The primary programming language of Nomad is Go.


Sponsored
AppSignal knows why the f*#k it crashed.
Stop vibe-debugging. Every exception, every backtrace, grouped so you see patterns, not noise.
www.appsignal.com