demo/digitalocean: add a demo job

This commit is contained in:
Ryan Uber 2015-09-26 09:42:59 -07:00
parent 1a4934f390
commit 56f7c271c9
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
job "bench" {
datacenters = ["nyc3"]
group "cache" {
count = 10000
task "hello-world" {
driver = "docker"
config {
image = "hello-world"
}
resources {
cpu = 100
memory = 100
}
}
}
}