diff --git a/example/README.md b/example/README.md index c139fb8..a2bfffd 100644 --- a/example/README.md +++ b/example/README.md @@ -19,6 +19,25 @@ Copy the allocation ID from the output of `nomad job status` command. $ nomad alloc exec -i -t /bin/sh ``` +## Hello World + +``` +$ nomad job run hello.nomad +``` +will start a container using `nomad-driver-containerd` which runs an infinite loop printing +`hello world` and sleeps for `3 seconds` between each iteration. This is a basic `hello world` +program which can be used to test launching containers using `nomad-driver-containerd`. + +**Check allocation logs** + +``` +$ nomad alloc logs -f -job hello +Hello world: sleeping for 3 seconds. +Hello world: sleeping for 3 seconds. +Hello world: sleeping for 3 seconds. +... +``` + ## Signal Handler ``` diff --git a/example/hello.nomad b/example/hello.nomad new file mode 100644 index 0000000..b5033e7 --- /dev/null +++ b/example/hello.nomad @@ -0,0 +1,21 @@ +job "hello" { + datacenters = ["dc1"] + + group "hello-group" { + task "hello-task" { + driver = "containerd-driver" + + config { + image = "docker.io/shm32/hello:world" + } + + resources { + cpu = 500 + memory = 256 + network { + mbits = 10 + } + } + } + } +}