2019-04-02 03:28:18 +00:00
|
|
|
job "memstress" {
|
|
|
|
datacenters = ["dc1", "dc2"]
|
2019-10-11 12:00:05 +00:00
|
|
|
type = "batch"
|
|
|
|
|
2019-11-25 18:31:00 +00:00
|
|
|
constraint {
|
|
|
|
attribute = "${attr.kernel.name}"
|
|
|
|
value = "linux"
|
|
|
|
}
|
|
|
|
|
2019-04-02 03:28:18 +00:00
|
|
|
group "memstress" {
|
|
|
|
count = 1
|
2019-10-11 12:00:05 +00:00
|
|
|
|
2019-04-02 03:28:18 +00:00
|
|
|
restart {
|
2019-10-11 12:00:05 +00:00
|
|
|
mode = "fail"
|
2019-04-02 03:28:18 +00:00
|
|
|
attempts = 0
|
|
|
|
}
|
2019-10-11 12:00:05 +00:00
|
|
|
|
2019-04-02 03:28:18 +00:00
|
|
|
reschedule {
|
2019-10-11 12:00:05 +00:00
|
|
|
attempts = 3
|
|
|
|
interval = "10m"
|
2019-04-02 03:28:18 +00:00
|
|
|
unlimited = false
|
|
|
|
}
|
2019-10-11 12:00:05 +00:00
|
|
|
|
2019-04-02 03:28:18 +00:00
|
|
|
task "memstress" {
|
|
|
|
driver = "docker"
|
|
|
|
|
|
|
|
config {
|
|
|
|
image = "progrium/stress"
|
2019-10-11 12:00:05 +00:00
|
|
|
|
2019-04-02 03:28:18 +00:00
|
|
|
args = [
|
2019-10-11 12:00:05 +00:00
|
|
|
"-m",
|
|
|
|
"2",
|
|
|
|
"-t",
|
|
|
|
"120",
|
2019-04-02 03:28:18 +00:00
|
|
|
]
|
|
|
|
}
|
2019-10-11 12:00:05 +00:00
|
|
|
|
2019-04-02 03:28:18 +00:00
|
|
|
resources {
|
|
|
|
cpu = 4096
|
|
|
|
memory = 1024
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-11 12:00:05 +00:00
|
|
|
}
|