diff --git a/example/example.nomad b/example/redis.nomad similarity index 80% rename from example/example.nomad rename to example/redis.nomad index 6e26cc9..4795e15 100644 --- a/example/example.nomad +++ b/example/redis.nomad @@ -1,8 +1,8 @@ -job "example" { +job "redis" { datacenters = ["dc1"] - group "cache" { - task "redis" { + group "redis-group" { + task "redis-task" { driver = "containerd-driver" config { diff --git a/tests/run_tests.sh b/tests/run_tests.sh index 179c860..f904826 100755 --- a/tests/run_tests.sh +++ b/tests/run_tests.sh @@ -30,15 +30,15 @@ main() { done cd ~/go/src/github.com/Roblox/nomad-driver-containerd/example echo "Starting nomad redis job using nomad-driver-containerd." - nomad job run example.nomad + nomad job run redis.nomad echo "Starting nomad signal handler job using nomad-driver-containerd." nomad job run signal.nomad echo "Inspecting redis job." - nomad job inspect example + nomad job inspect redis echo "Inspecting signal handler job." nomad job inspect signal echo "Stopping nomad redis job." - nomad job stop example + nomad job stop redis echo "Stopping nomad signal handler job." nomad job stop signal echo "Sleep for 5 seconds, to allow nomad jobs to shutdown gracefully."