Skip to content

Commit

Permalink
docs: Fix parameter type in client reserved configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
liukch committed Jun 17, 2024
1 parent 8e589a9 commit 92c87c7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions website/content/docs/configuration/client.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ see the [drivers documentation](/nomad/docs/drivers).

- `cpu` `(int: 0)` - Specifies the amount of CPU to reserve, in MHz.

- `cores` `(int: 0)` - Specifies the cpuset of CPU cores to reserve. Only
- `cores` `(string: "")` - Specifies the cpuset of CPU cores to reserve. Only
supported on Linux.

```hcl
Expand Down Expand Up @@ -441,9 +441,9 @@ see the [drivers documentation](/nomad/docs/drivers).

- `filesystem_isolation_extra_paths` `([]string: nil)` - Allow extra paths
in the filesystem isolation. Paths are specified in the form `[kind]:[mode]:[path]`
where `kind` must be either `f` or `d` (file or directory) and
`mode` must be zero or more of `r`, `w`, `c`, `x` (read, write, create, execute) e.g.
`f:r:/dev/urandom` would enable reading the /dev/urandom file,
where `kind` must be either `f` or `d` (file or directory) and
`mode` must be zero or more of `r`, `w`, `c`, `x` (read, write, create, execute) e.g.
`f:r:/dev/urandom` would enable reading the /dev/urandom file,
`d:rx:/opt/bin` would enable reading and executing from the /opt/bin directory

- `set_environment_variables` `(string:"")` - Specifies a comma separated list
Expand Down

0 comments on commit 92c87c7

Please sign in to comment.