Rkt Driver
Deprecation Warning! Nomad introduced the rkt driver in version 0.2.0. The rkt project had some early adoption; in recent times user adoption has trended away from rkt towards other projects. Project activity has declined and there are unpatched CVEs. The project has been archived by the CNCF
Nomad 0.11 converted the rkt driver to an external driver. We will not prioritize features or pull requests that affect the rkt driver. The external driver is available as an open source repository for community ownership.
Name: rkt
The rkt
driver provides an interface for using rkt for running
application containers.
Task Configuration
The rkt
driver supports the following configuration in the job spec:
image
- The image to run. May be specified by name, hash, ACI address or docker registry.command
- (Optional) A command to execute on the ACI.args
- (Optional) A list of arguments to the optionalcommand
. References to environment variables or any interpretable Nomad variables will be interpreted before launching the task.trust_prefix
- (Optional) The trust prefix to be passed to rkt. Must be reachable from the box running the nomad agent. If not specified, the image is run with--insecure-options=all
.insecure_options
- (Optional) List of insecure options for rkt. Consultrkt --help
for list of supported values. This list overrides the--insecure-options=all
default when notrust_prefix
is provided in the job config, which can be effectively used to enforce secure runs, usinginsecure_options = ["none"]
option.dns_servers
- (Optional) A list of DNS servers to be used in the container. Alternatively a list containing justhost
ornone
.host
uses the host'sresolv.conf
whilenone
forces use of the image's name resolution configuration.dns_search_domains
- (Optional) A list of DNS search domains to be used in the containers.net
- (Optional) A list of networks to be used by the containersport_map
- (Optional) A key/value map of ports used by the container. The value is the port name specified in the image manifest file. When running Docker images with rkt the port names will be of the form${PORT}-tcp
. See networking below for more details.
debug
- (Optional) Enable rkt command debug option.no_overlay
- (Optional) When enabled, will use--no-overlay=true
flag for 'rkt run'. Useful when running jobs on older systems affected by https://github.com/rkt/rkt/issues/1922volumes
- (Optional) A list ofhost_path:container_path[:readOnly]
strings to bind host paths to container paths. Mount is done read-write by default; an optional third parameterreadOnly
can be provided to make it read-only.group
- (Optional) Specifies the group that will run the task. Sets the--group
flag and overrides the group specified by the image. Theuser
may be specified at the task level.
Networking
The rkt
can specify --net
and --port
for the rkt client. Hence, there are two ways to use host ports by
using --net=host
or --port=PORT
with your network.
Example:
Allocating Ports
You can allocate ports to your task using the port syntax described on the networking page.
When you use port allocation, the image manifest needs to declare public ports and host has configured network. For more information, please refer to rkt Networking.
Client Requirements
The rkt
driver requires the following:
- The Nomad client agent to be running as the root user.
- rkt to be installed and in your system's
$PATH
. - The
trust_prefix
must be accessible by the node running Nomad. This can be an internal source, private to your cluster, but it must be reachable by the client over HTTP.
Plugin Options
volumes_enabled
- Defaults totrue
. Allows tasks to bind host paths (volumes
) inside their container. Binding relative paths is always allowed and will be resolved relative to the allocation's directory.
Client Configuration
Note: client configuration options will soon be deprecated. Please use plugin options instead. See the plugin block documentation for more information.
The rkt
driver has the following client configuration
options:
rkt.volumes.enabled
- Defaults totrue
. Allows tasks to bind host paths (volumes
) inside their container. Binding relative paths is always allowed and will be resolved relative to the allocation's directory.
Client Attributes
The rkt
driver will set the following client attributes:
driver.rkt
- Set to1
if rkt is found on the host node. Nomad determines this by executingrkt version
on the host and parsing the outputdriver.rkt.version
- Version ofrkt
e.g.:1.27.0
. Note that the minimum required version is1.27.0
driver.rkt.appc.version
- Version ofappc
thatrkt
is using e.g.:1.1.0
Here is an example of using these properties in a job file:
Resource Isolation
This driver supports CPU and memory isolation by delegating to rkt
. Network
isolation is not supported as of now.