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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
350 B
HCL
Raw Normal View History

2015-09-15 01:30:26 +00:00
job "binstore-storagelocker" {
2019-07-20 14:55:07 +00:00
group "binsl" {
ephemeral_disk {
size = 500
}
ephemeral_disk {
size = 100
}
count = 5
task "binstore" {
driver = "docker"
2015-09-15 01:30:26 +00:00
2019-07-20 14:55:07 +00:00
resources {
cpu = 500
memory = 128
}
2015-09-15 01:30:26 +00:00
2019-07-20 14:55:07 +00:00
resources {
cpu = 500
memory = 128
}
2015-09-15 01:30:26 +00:00
}
2019-07-20 14:55:07 +00:00
}
2015-09-15 01:30:26 +00:00
}