open-nomad/jobspec/test-fixtures/artifacts.hcl

25 lines
550 B
HCL
Raw Normal View History

job "binstore-storagelocker" {
group "binsl" {
task "binstore" {
driver = "docker"
artifact {
source = "http://foo.com/bar"
destination = ""
2016-06-10 19:28:27 +00:00
options {
foo = "bar"
}
}
artifact {
source = "http://foo.com/baz"
}
artifact {
source = "http://foo.com/bam"
destination = "var/foo"
}
resources {}
}
}
}