github.com/hernad/nomad@v1.6.112/e2e/jobsubmissions/input/huge.hcl (about)

     1  # Copyright (c) HashiCorp, Inc.
     2  # SPDX-License-Identifier: MPL-2.0
     3  
     4  job "huge" {
     5    type = "batch"
     6  
     7    constraint {
     8      attribute = "${attr.kernel.name}"
     9      value     = "linux"
    10    }
    11  
    12    meta {
    13      key = "REPLACE"
    14    }
    15  
    16    group "group" {
    17      task "task" {
    18        driver = "raw_exec"
    19  
    20        config {
    21          command = "/usr/bin/false"
    22        }
    23  
    24        resources {
    25          cpu    = 10
    26          memory = 16
    27        }
    28      }
    29    }
    30  }