github.com/quite/nomad@v0.8.6/jobspec/test-fixtures/multi-resource.hcl (about) 1 job "binstore-storagelocker" { 2 group "binsl" { 3 ephemeral_disk { 4 size = 500 5 } 6 ephemeral_disk { 7 size = 100 8 } 9 count = 5 10 task "binstore" { 11 driver = "docker" 12 13 resources { 14 cpu = 500 15 memory = 128 16 } 17 18 resources { 19 cpu = 500 20 memory = 128 21 } 22 } 23 } 24 }