Fix a few more typos
This commit is contained in:
parent
171e4067e4
commit
b8d11302ef
|
@ -107,11 +107,11 @@ The Flask authentication secret key used to salt session credentials. Should be
|
||||||
* *optional*
|
* *optional*
|
||||||
* *requires* `authentication` → `enabled`
|
* *requires* `authentication` → `enabled`
|
||||||
|
|
||||||
A list of API authentication tokens that can be passed via the `X-Api-Key` header to authorize access to the API.
|
A list of API authentication tokens that can be passed via the `X-Api-Key` header to authorize access to the API. Each list element contains the following fields:
|
||||||
|
|
||||||
##### `description`
|
##### `description`
|
||||||
|
|
||||||
* *required*
|
* *ignored*
|
||||||
|
|
||||||
A text description of the token function or use. Not parsed by the API, but used for administrator reference in the configuration file.
|
A text description of the token function or use. Not parsed by the API, but used for administrator reference in the configuration file.
|
||||||
|
|
||||||
|
@ -196,6 +196,15 @@ Return a JSON document containing information about `<node>`. The output is iden
|
||||||
|
|
||||||
**NOTE:** Nodes are created automatically during daemon startup; they cannot be created by the client tools.
|
**NOTE:** Nodes are created automatically during daemon startup; they cannot be created by the client tools.
|
||||||
|
|
||||||
|
#### `/api/v1/node/<node>/daemon-state`
|
||||||
|
* Methods: `GET`
|
||||||
|
|
||||||
|
###### `GET`
|
||||||
|
* Mandatory values: N/A
|
||||||
|
* Optional values: N/A
|
||||||
|
|
||||||
|
Return the daemon state of `<node>`.
|
||||||
|
|
||||||
#### `/api/v1/node/<node>/coordinator-state`
|
#### `/api/v1/node/<node>/coordinator-state`
|
||||||
* Methods: `GET`, `POST`
|
* Methods: `GET`, `POST`
|
||||||
|
|
||||||
|
|
|
@ -262,6 +262,12 @@ The directory to store ephemeral configuration files. Usually `/run/pvc` or a si
|
||||||
|
|
||||||
The directory to store log files for `file_logging`. Usually `/var/log/pvc` or a similar directory. Must be specified even if `file_logging` is `False`, though ignored.
|
The directory to store log files for `file_logging`. Usually `/var/log/pvc` or a similar directory. Must be specified even if `file_logging` is `False`, though ignored.
|
||||||
|
|
||||||
|
#### `system` → `configuration` → `directories` → `console_log_directory`
|
||||||
|
|
||||||
|
* *required*
|
||||||
|
|
||||||
|
The directory to store VM console logs. Usually `/var/log/libvirt` or a similar directory.
|
||||||
|
|
||||||
#### `system` → `configuration` → `logging` → `file_logging`
|
#### `system` → `configuration` → `logging` → `file_logging`
|
||||||
|
|
||||||
* *required*
|
* *required*
|
||||||
|
|
Loading…
Reference in New Issue