LXC task driver plugin
The lxc
driver provides an interface for using LXC for running application
containers. This tutorial walks through the steps involved in configuring a Nomad
client agent to be able to run LXC jobs. You can download the external LXC
driver here.
Note
This tutorial is compatible with Nomad 0.9 and above. If you are using an older version of Nomad, refer to the LXC driver documentation.
Install the LXC task driver plug-in dependencies
Before deploying an LXC workload, you will need to install the lxc
and
lxc-templates
packages which will provide the runtime and templates to start
your container. Run the following command:
Download and install the LXC task driver plug-in
External drivers must be placed in the plugin_dir directory which
defaults to data_dir
/plugins
.
Make a directory called plugins
in data_dir (which is /opt/nomad/data
in the example below)
Download LXC driver.
Unzip the binary.
Move the LXC driver into your new plugins
directory.
You can now delete the original zip file:
Verify the LXC task driver status
After completing the previous steps, you do not need to explicitly enable the LXC driver in the client configuration, as it is enabled by default.
Restart the Nomad client service:
After a few seconds, run the nomad node status
command to verify the client
node is ready:
You can now run the nomad node status
command against the specific node ID to
enumerate the drivers initialized on the client. In the example case, the client
node ID is 81c22a0c
—your client node ID will be different. When configured
properly, the "Driver Status" line should include "lxc" in the list as shown
below:
Register the Nomad job
You can run this LXC example job to register a Nomad job that deploys an LXC workload.
Check the status of the job
Run the following command to check the status of the jobs in your cluster:
The output above shows the job running successfully. You can obtain detailed information about the specific job with the following command:
Explore additional plug-in options
The LXC driver is enabled by default in the client configuration. In order to
provide additional options to the LXC plugin, add plugin
options volumes_enabled
and lxc_path
for the lxc
driver in the client's configuration file like in the following example:
Next steps
At this point, your clusters will be configured to run LXC jobs on this client. Continue performing this step on all cluster nodes that you would like to be able to run LXC jobs. You will use this same process to enable LXC in your production clusters, allowing you to run even more types of workload in Nomad.