Add hello world example job.

This commit is contained in:
Shishir Mahajan 2020-08-26 11:54:36 -07:00
parent cbcc1b3c5d
commit 96943f549e
2 changed files with 40 additions and 0 deletions

View File

@ -19,6 +19,25 @@ Copy the allocation ID from the output of `nomad job status` command.
$ nomad alloc exec -i -t <allocation_id> /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
```

21
example/hello.nomad Normal file
View File

@ -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
}
}
}
}
}