open-nomad/e2e/hostvolumes/input/single_mount.nomad

35 lines
531 B
Plaintext
Raw Normal View History

2019-09-17 18:45:00 +00:00
job "test1" {
datacenters = ["dc1", "dc2"]
type = "service"
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
2019-09-17 18:45:00 +00:00
group "test1" {
count = 1
volume "data" {
type = "host"
source = "shared_data"
}
task "test" {
driver = "docker"
volume_mount {
volume = "data"
destination = "/tmp/foo"
}
config {
image = "bash:latest"
command = "bash"
args = ["-c", "sleep 15000"]
}
}
}
}