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

26 lines
417 B
HCL
Raw Normal View History

job "binstore-storagelocker" {
2019-07-20 14:55:07 +00:00
group "binsl" {
task "binstore" {
driver = "docker"
2019-07-20 14:55:07 +00:00
artifact {
source = "http://foo.com/bar"
destination = ""
2019-07-20 14:55:07 +00:00
options {
foo = "bar"
}
2019-07-20 14:55:07 +00:00
}
artifact {
source = "http://foo.com/baz"
}
artifact {
source = "http://foo.com/bam"
destination = "var/foo"
}
}
2019-07-20 14:55:07 +00:00
}
}