backport of commit b83c1e14c13b05a89524fb6ea6e94ddcca7db1c8 (#19281)

Co-authored-by: Seth Hoenig <shoenig@duck.com>
This commit is contained in:
hc-github-team-nomad-core 2023-12-01 14:08:21 -06:00 committed by GitHub
parent 1a309b43fd
commit 9909d1fa73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 1 deletions

View File

@ -368,7 +368,16 @@ see the [drivers documentation](/nomad/docs/drivers).
- `cpu` `(int: 0)` - Specifies the amount of CPU to reserve, in MHz.
- `cores` `(int: 0)` - Specifies the number of CPU cores to reserve.
- `cores` `(int: 0)` - Specifies the cpuset of CPU cores to reserve. Only
supported on Linux.
```hcl
client {
reserved {
cores = "0-4"
}
}
```
- `memory` `(int: 0)` - Specifies the amount of memory to reserve, in MB.