From cd2b647b6588cc501985c3e7143fa2743aa357a4 Mon Sep 17 00:00:00 2001 From: Shishir Mahajan Date: Wed, 17 Jun 2020 17:34:24 -0700 Subject: [PATCH] Add stress.nomad to example jobs. --- example/stress.nomad | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 example/stress.nomad diff --git a/example/stress.nomad b/example/stress.nomad new file mode 100644 index 0000000..c2a5499 --- /dev/null +++ b/example/stress.nomad @@ -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 + } + } + } + } +}