open-nomad/website/source/docs/drivers/exec.html.md

135 lines
3.4 KiB
Markdown
Raw Normal View History

2015-09-20 22:31:33 +00:00
---
layout: "docs"
page_title: "Drivers: Exec"
sidebar_current: "docs-drivers-exec"
description: |-
The Exec task driver is used to run binaries using OS isolation primitives.
---
2015-10-08 18:36:22 +00:00
# Isolated Fork/Exec Driver
2015-09-20 22:31:33 +00:00
Name: `exec`
2015-09-20 22:42:33 +00:00
The `exec` driver is used to simply execute a particular command for a task.
2015-11-03 20:57:39 +00:00
However, unlike [`raw_exec`](raw_exec.html) it uses the underlying isolation
2016-08-27 12:56:39 +00:00
primitives of the operating system to limit the task's access to resources. While
2015-10-08 19:18:44 +00:00
simple, since the `exec` driver can invoke any command, it can be used to call
scripts or other wrappers which provide higher level features.
2015-09-20 22:42:33 +00:00
## Task Configuration
```hcl
task "webservice" {
driver = "exec"
config {
command = "my-binary"
args = ["-flag", "1"]
}
}
```
2015-09-20 22:42:33 +00:00
The `exec` driver supports the following configuration in the job spec:
2016-03-16 16:56:04 +00:00
* `command` - The command to execute. Must be provided. If executing a binary
that exists on the host, the path must be absolute. If executing a binary that
is downloaded from an [`artifact`](/docs/job-specification/artifact.html), the
2016-03-16 16:56:04 +00:00
path can be relative from the allocations's root directory.
* `args` - (Optional) A list of arguments to the `command`. References
to environment variables or any [interpretable Nomad
variables](/docs/runtime/interpolation.html) will be interpreted before
launching the task.
2015-09-20 22:42:33 +00:00
## Examples
To run a binary present on the Node:
```hcl
task "example" {
driver = "exec"
2016-03-16 16:56:04 +00:00
config {
# When running a binary that exists on the host, the path must be absolute.
command = "/bin/sleep"
args = ["1"]
}
}
```
To execute a binary downloaded from an
[`artifact`](/docs/job-specification/artifact.html):
```hcl
task "example" {
driver = "exec"
2016-03-16 16:56:04 +00:00
config {
command = "name-of-my-binary"
}
2016-03-16 16:56:04 +00:00
artifact {
source = "https://internal.file.server/name-of-my-binary"
options {
checksum = "sha256:abd123445ds4555555555"
2016-03-16 16:56:04 +00:00
}
}
}
```
2016-03-16 16:56:04 +00:00
## Client Requirements
The `exec` driver can only be run when on Linux and running Nomad as root.
`exec` is limited to this configuration because currently isolation of resources
2016-08-27 12:56:39 +00:00
is only guaranteed on Linux. Further, the host must have cgroups mounted properly
2016-03-16 16:56:04 +00:00
in order for the driver to work.
If you are receiving the error:
```
* Constraint "missing drivers" filtered <> nodes
```
and using the exec driver, check to ensure that you are running Nomad as root.
This also applies for running Nomad in -dev mode.
2016-03-16 16:56:04 +00:00
2015-09-20 22:42:33 +00:00
## Client Attributes
The `exec` driver will set the following client attributes:
* `driver.exec` - This will be set to "1", indicating the driver is available.
2015-09-20 22:42:33 +00:00
## Resource Isolation
The resource isolation provided varies by the operating system of
the client and the configuration.
2015-11-03 20:57:39 +00:00
On Linux, Nomad will use cgroups, and a chroot to isolate the
resources of a process and as such the Nomad agent must be run as root.
2016-01-21 23:02:51 +00:00
### <a id="chroot"></a>Chroot
2016-08-27 12:56:39 +00:00
The chroot is populated with data in the following directories from the host
2016-01-21 23:02:51 +00:00
machine:
```
[
"/bin",
"/etc",
"/lib",
"/lib32",
"/lib64",
"/run/resolvconf",
"/sbin",
"/usr",
]
```
2017-01-23 18:51:57 +00:00
The task's chroot is populated by linking or copying the data from the host into
the chroot. Note that this can take considerable disk space. Since Nomad v0.5.3,
the client manages garbage collection locally which mitigates any issue this may
create.
This list is configurable through the agent client
[configuration file](/docs/agent/configuration/client.html#chroot_env).