cd87afd15f
The e2e test code is absolutely hideous and leaks processes and files on disk. NomadAgent seems useful, but the clientstate e2e tests are very messy and slow. The last test "Corrupt" is probably the most useful as it explicitly corrupts the state file whereas the other tests attempt to reproduce steps thought to cause corruption in earlier releases of Nomad.
14 lines
312 B
HCL
14 lines
312 B
HCL
# Sleeper is a fake service that outputs its pid to a file named `pid` to
|
|
# assert duplicate tasks are never started.
|
|
|
|
job "sleeper" {
|
|
datacenters = ["dc1"]
|
|
task "sleeper" {
|
|
driver = "raw_exec"
|
|
config {
|
|
command = "/bin/bash"
|
|
args = ["-c", "echo $$ >> pid && sleep 999999"]
|
|
}
|
|
}
|
|
}
|