Merge pull request #35 from Roblox/example
Add hello world example job.
This commit is contained in:
commit
fa7c293915
@ -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
|
$ 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
|
## Signal Handler
|
||||||
|
|
||||||
```
|
```
|
||||||
|
21
example/hello.nomad
Normal file
21
example/hello.nomad
Normal 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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user