vault backup: 2024-09-30 15:13:49

This commit is contained in:
zleyyij 2024-09-30 15:13:49 -06:00
parent a9357af2eb
commit 8f8ea61710

View File

@ -10,5 +10,8 @@
## Work terms
| Phrase | Definition |
| ------ | -------------------------------------------------------------- |
| task | The smallest unit of work in Nomad. Tasks are executed by task |
| ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| task | The smallest unit of work in Nomad. Tasks are executed by task drivers like `docker` or `exec`, which allows Nomad to be flexible in the types of tasks it supports. Tasks specify their required task driver, configuration for the driver, constraints, and resources required. |
| group | A series of tasks that run on the same Nomad client. |
| job | The core unit of *control* for Nomad and defines the application and its configuration. It can contain one or many tasks |
| job_specification/jobspec | A job specification, a |