github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/jobspec/test-fixtures/task-scaling-policy-invalid-resource.hcl (about)

     1  job "foo" {
     2    task "bar" {
     3      driver = "docker"
     4  
     5      scaling "wrong" {
     6        enabled = true
     7        min     = 50
     8        max     = 1000
     9  
    10        policy {
    11          test = "cpu"
    12        }
    13      }
    14  
    15    }
    16  }
    17