Nomad

Card Puncher Data Processing

About

Nomad is workload orchestrator to deploy and manage:

  • containers
  • and non-containerized applications

across on-prem and clouds at scale.

Jobs

Jobs are the primary configuration that users interact with when using Nomad. A job is a declarative specification of tasks that Nomad should run.

Example:

task "webservice" {
  driver = "docker"
 
  config {
    image = "redis:3.2"
    labels {
      group = "webservice-cache"
    }
  }
}





Discover More
Card Puncher Data Processing
Orchestration

A orchestration tool will provision the servers or container themselves, leaving the job of configuring those servers to other configuration management tool. It's part of a set of tool to support infrastructure...
Card Puncher Data Processing
What is a Container/VM Orchestrator?

Container Orchestrator: manage, scale, start/stop and maintain container They are also known as scheduler. This is where you create and run container in production. ie a cluster resource...



Share this page:
Follow us:
Task Runner