github.com/smithx10/nomad@v0.9.1-rc1/e2e/nomad09upgrade/exec.nomad (about)

     1  job "sleep" {
     2    datacenters = ["dc1"]
     3  
     4    group "sleep" {
     5      task "sleep" {
     6        driver = "exec"
     7  
     8        config {
     9          command = "sleep"
    10          args = ["10000"]
    11        }
    12  
    13        resources {
    14          cpu    = 100
    15          memory = 32
    16        }
    17      }
    18    }
    19  }
    20