LXC Driver
Name: lxc
The lxc
driver provides an interface for using LXC for running application
containers. You can download the external LXC driver here. For more detailed instructions on how to set up and use this driver, please refer to the LXC guide.
Note: The LXC client set up has changed in Nomad 0.9. You must use the new plugin syntax and install the external LXC driver in the plugin_dir prior to upgrading. See plugin options below for an example. Note the job specification remains the same.
Task Configuration
The lxc
driver supports the following configuration in the job spec:
template
- The LXC template to run.template_args
- A list of argument strings to pass into the template.log_level
- (Optional) LXC library's logging level. Defaults toerror
. Must be one oftrace
,debug
,info
,warn
, orerror
.verbosity
- (Optional) Enables extra verbosity in the LXC library's logging. Defaults toquiet
. Must be one ofquiet
orverbose
.volumes
- (Optional) A list ofhost_path:container_path
strings to bind-mount host paths to container paths. Mounting host paths outside of the allocation working directory is allowed by default. You can prevent mounting host paths outside of the allocation working directory on individual clients by setting thevolumes_enabled
option tofalse
in the client's configurationNote: Unlike the similar option for the docker driver, this option must not have an absolute path as the
container_path
component. This will cause an error when submitting a job.Setting this does not affect the standard bind-mounts of
alloc
,local
, andsecrets
, which are always created.release
- (Optional) The name/version of the distribution. By default this is set by the template.arch
- (Optional) The architecture of the container. By default this is set by the template.image_server
- (Optional) The hostname of the image server. Defaults toimages.linuxcontainers.org
.image_variant
- (Optional) The variant of the image. Defaults todefault
or as set by the template.disable_gpg
- (Optional) Disable GPG validation of images. Defaults tofalse
, and enabling this flag is not recommended.flush_cache
- (Optional) Flush the local copy of the image (if present) and force it to be fetched from the image server. Defaults tofalse
.force_cache
- (Optional) Force the use of the local copy even if expired. Defaults tofalse
.gpg_key_server
: GPG key server used for checking image signatures. Default is set by the underlying LXC library.gpg_key_id
: GPG key ID used for checking image signatures. Default is set by the underlying LXC library.
Networking
Currently the lxc
driver only supports host networking. See the none
networking type in the lxc.container.conf
manual for more
information.
Client Requirements
The lxc
driver requires the following:
- 64-bit Linux host
- The
linux_amd64
Nomad binary - The LXC driver binary placed in the plugin_dir directory.
liblxc
to be installedlxc-templates
to be installed
Plugin Options
enabled
- Thelxc
driver may be disabled on hosts by setting this option tofalse
(defaults totrue
).volumes_enabled
- Specifies whether host can bind-mount host paths to container paths (defaults totrue
).lxc_path
- The location in which all containers are stored (commonly defaults to/var/lib/lxc
). Seelxc-create
for more details.gc
stanza:container
- Defaults totrue
. This option can be used to disable Nomad from removing a container when the task exits. Under a name conflict, Nomad may still remove the dead container.
An example of using these plugin options with the new plugin syntax is shown below:
Please note the plugin name should match whatever name you have specified for the external driver in the plugin_dir directory.
Client Configuration
Only use this section for pre-0.9 releases of Nomad. If you are using Nomad 0.9 or above, please see plugin options
The lxc
driver has the following client-level options:
lxc.enable
- Thelxc
driver may be disabled on hosts by setting this option tofalse
(defaults totrue
).
Client Attributes
The lxc
driver will set the following client attributes:
driver.lxc
- Set to1
if LXC is found and enabled on the host node.driver.lxc.version
- Version oflxc
e.g.:1.1.0
.
Resource Isolation
This driver supports CPU and memory isolation via the lxc
library. Network
isolation is not supported as of now.