Add stress.nomad to example jobs.

This commit is contained in:
Shishir Mahajan 2020-06-17 17:34:24 -07:00
parent 4672345bc2
commit cd2b647b65
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A

26
example/stress.nomad Normal file
View File

@ -0,0 +1,26 @@
job "stress" {
datacenters = ["dc1"]
group "stress-group" {
task "stress-task" {
driver = "containerd-driver"
config {
image = "docker.io/shm32/stress:1.0"
}
restart {
attempts = 5
delay = "30s"
}
resources {
cpu = 500
memory = 256
network {
mbits = 10
}
}
}
}
}