open-nomad/jobspec/test-fixtures/multi-resource.hcl

25 lines
447 B
HCL
Raw Normal View History

2015-09-15 01:30:26 +00:00
job "binstore-storagelocker" {
group "binsl" {
ephemeral_disk {
size = 500
2016-08-26 19:24:47 +00:00
}
ephemeral_disk {
size = 100
2016-08-26 19:24:47 +00:00
}
2015-09-15 01:30:26 +00:00
count = 5
task "binstore" {
driver = "docker"
resources {
cpu = 500
memory = 128
}
resources {
cpu = 500
memory = 128
}
}
}
}