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

95 lines
2.4 KiB
Markdown
Raw Normal View History

2015-10-08 19:18:44 +00:00
---
layout: "docs"
page_title: "Drivers: Raw Exec"
sidebar_current: "docs-drivers-raw-exec"
description: |-
The Raw Exec task driver simply fork/execs and provides no isolation.
---
# Raw Fork/Exec Driver
Name: `raw_exec`
The `raw_exec` driver is used to execute a command for a task without any
isolation. Further, the task is started as the same user as the Nomad process.
As such, it should be used with extreme care and is disabled by default.
2015-10-08 19:18:44 +00:00
## Task Configuration
The `raw_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 download from an [`artifact`](/docs/jobspec/index.html#artifact_doc), the
path can be relative from the allocations's root directory.
2016-01-11 19:12:09 +00:00
* `args` - (Optional) A list of arguments to the optional `command`.
References to environment variables or any [intepretable Nomad
2016-02-06 23:34:21 +00:00
variables](/docs/jobspec/interpreted.html) will be interpreted
2016-01-11 19:12:09 +00:00
before launching the task. For example:
```
2016-02-06 23:34:21 +00:00
args = ["${nomad.datacenter}", "${MY_ENV}", "${meta.foo}"]
2016-01-11 19:12:09 +00:00
```
2015-10-08 19:18:44 +00:00
2016-03-16 16:56:04 +00:00
## Examples
2015-10-08 19:18:44 +00:00
2016-03-16 16:56:04 +00:00
To run a binary present on the Node:
2015-10-08 19:18:44 +00:00
```
2016-03-16 16:56:04 +00:00
task "example" {
driver = "raw_exec"
config {
# When running a binary that exists on the host, the path must be absolute
command = "/bin/sleep"
args = ["1"]
}
}
2015-10-08 19:18:44 +00:00
```
2016-03-16 16:56:04 +00:00
To execute a binary downloaded from an [`artifact`](/docs/jobspec/index.html#artifact_doc):
2016-03-16 16:56:04 +00:00
```
task "example" {
driver = "raw_exec"
2016-03-16 16:56:04 +00:00
config {
command = "binary.bin"
}
2016-03-16 16:56:04 +00:00
artifact {
source = "https://dl.dropboxusercontent.com/u/1234/binary.bin"
options {
checksum = "sha256:abd123445ds4555555555"
}
}
}
```
2016-03-16 16:56:04 +00:00
## Client Requirements
The `raw_exec` driver can run on all supported operating systems. It is however
disabled by default. In order to be enabled, the Nomad client configuration must
explicitly enable the `raw_exec` driver in the client's
[options](../agent/config.html#options) field:
```
2016-03-16 16:56:04 +00:00
client {
options = {
"driver.raw_exec.enable" = "1"
}
}
```
2015-10-08 19:18:44 +00:00
## Client Attributes
The `raw_exec` driver will set the following client attributes:
* `driver.raw_exec` - This will be set to "1", indicating the
driver is available.
## Resource Isolation
The `raw_exec` driver provides no isolation.