open-nomad/jobspec/test-fixtures/bad-artifact.hcl

16 lines
188 B
HCL
Raw Normal View History

2016-03-16 03:21:52 +00:00
job "binstore-storagelocker" {
2019-07-20 14:55:07 +00:00
group "binsl" {
count = 5
2016-03-16 03:21:52 +00:00
2019-07-20 14:55:07 +00:00
task "binstore" {
driver = "docker"
artifact {
bad = "bad"
}
resources {}
2016-03-16 03:21:52 +00:00
}
2019-07-20 14:55:07 +00:00
}
2016-03-16 03:21:52 +00:00
}