mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 09:25:46 +03:00
* Move commands from docs to its own root-level directory * temporarily use modified dev-portal branch with nomad ia changes * explicitly clone nomad ia exp branch * retrigger build, fixed dev-portal broken build * architecture, concepts and get started individual pages * fix get started section destinations * reference section * update repo comment in website-build.sh to show branch * docs nav file update capitalization * update capitalization to force deploy * remove nomad-vs-kubernetes dir; move content to what is nomad pg * job section * Nomad operations category, deploy section * operations category, govern section * operations - manage * operations/scale; concepts scheduling fix * networking * monitor * secure section * remote auth-methods folder and move up pages to sso; linkcheck * Fix install2deploy redirects * fix architecture redirects * Job section: Add missing section index pages * Add section index pages so breadcrumbs build correctly * concepts/index fix front matter indentation * move task driver plugin config to new deploy section * Finish adding full URL to tutorials links in nav * change SSO to Authentication in nav and file system * Docs NomadIA: Move tutorials into NomadIA branch (#26132) * Move governance and policy from tutorials to docs * Move tutorials content to job-declare section * run jobs section * stateful workloads * advanced job scheduling * deploy section * manage section * monitor section * secure/acl and secure/authorization * fix example that contains an unseal key in real format * remove images from sso-vault * secure/traffic * secure/workload-identities * vault-acl change unseal key and root token in command output sample * remove lines from sample output * fix front matter * move nomad pack tutorials to tools * search/replace /nomad/tutorials links * update acl overview with content from deleted architecture/acl * fix spelling mistake * linkcheck - fix broken links * fix link to Nomad variables tutorial * fix link to Prometheus tutorial * move who uses Nomad to use cases page; move spec/config shortcuts add dividers * Move Consul out of Integrations; move namespaces to govern * move integrations/vault to secure/vault; delete integrations * move ref arch to docs; rename Deploy Nomad back to Install Nomad * address feedback * linkcheck fixes * Fixed raw_exec redirect * add info from /nomad/tutorials/manage-jobs/jobs * update page content with newer tutorial * link updates for architecture sub-folders * Add redirects for removed section index pages. Fix links. * fix broken links from linkcheck * Revert to use dev-portal main branch instead of nomadIA branch * build workaround: add intro-nav-data.json with single entry * fix content-check error * add intro directory to get around Vercel build error * workound for emtpry directory * remove mdx from /intro/ to fix content-check and git snafu * Add intro index.mdx so Vercel build should work --------- Co-authored-by: Tu Nguyen <im2nguyen@gmail.com>
63 lines
2.3 KiB
Plaintext
63 lines
2.3 KiB
Plaintext
---
|
|
layout: docs
|
|
page_title: Configure Nomad task drivers
|
|
description: Nomad's bundled task drivers integrate with the host OS to run job tasks in isolation. Review conceptual, configuration, and reference information for the Docker, Isolated Fork/Exec, Java, QEMU, and Raw Fork/Exec task drivers.
|
|
---
|
|
|
|
# Configure Nomad task drivers
|
|
|
|
Nomad's bundled task drivers integrate with the host OS to run job tasks in
|
|
isolation. Review driver capabilities, client configuration, and reference
|
|
information for the Docker, Isolated Fork/Exec, Java, QEMU, and Raw Fork/Exec
|
|
task drivers.
|
|
|
|
@include 'task-driver-intro.mdx'
|
|
|
|
## Configuration
|
|
|
|
Refer to the [plugin block documentation][plugin] for examples on how to use the
|
|
plugin block in Nomad's client configuration. Review the [Docker driver's client
|
|
requirements section][docker_plugin] for a detailed example.
|
|
|
|
## Nomad task drivers
|
|
|
|
The Nomad binary contains several bundled task drivers. We also support
|
|
additional task driver plugins that you may install separately.
|
|
|
|
| Bundled with Nomad | Plugins |
|
|
|----------------------|-----------------------|
|
|
| [Docker] | [Exec2] |
|
|
| [Isolated Fork/Exec] | [Podman] |
|
|
| [Java] | [Virt] |
|
|
| [QEMU] | |
|
|
| [Raw Fork/Exec] | |
|
|
|
|
## Community task drivers
|
|
|
|
You may also use [community-supported task driver
|
|
plugins](/nomad/plugins/drivers/community/).
|
|
|
|
## Use task drivers in jobs
|
|
|
|
Refer to [Use Nomad task drivers in jobs](/nomad/docs/job-declare/task-driver)
|
|
for usage information.
|
|
|
|
## Create task drivers
|
|
|
|
Nomad's task driver architecture is pluggable, which gives you the flexibility
|
|
to create your own drivers without having to recompile Nomad. Refer to the
|
|
[plugin authoring guide][plugin_guide] for details.
|
|
|
|
|
|
[plugin]: /nomad/docs/configuration/plugin
|
|
[docker_plugin]: /nomad/docs/deploy/task-driver/docker#client-requirements
|
|
[plugin_guide]: /nomad/docs/concepts/plugins/task-drivers
|
|
[Docker]: /nomad/docs/deploy/task-driver/docker
|
|
[Exec2]: /nomad/plugins/drivers/exec2
|
|
[Isolated Fork/Exec]: /nomad/docs/deploy/task-driver/exec
|
|
[Podman]: /nomad/plugins/drivers/podman
|
|
[Java]: /nomad/docs/deploy/task-driver/java
|
|
[Virt]: /nomad/plugins/drivers/virt
|
|
[QEMU]: /nomad/docs/deploy/task-driver/qemu
|
|
[Raw Fork/Exec]: /nomad/docs/deploy/task-driver/raw_exec
|