mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
docs: update for new secopts struct in GET /info
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
parent
6572c46716
commit
e6ec90608c
2 changed files with 21 additions and 4 deletions
|
@ -165,6 +165,7 @@ This section lists each version from latest to oldest. Each listing includes a
|
||||||
* The `SecurityOptions` field within the `GET /info` response now includes `userns` if user namespaces are enabled in the daemon.
|
* The `SecurityOptions` field within the `GET /info` response now includes `userns` if user namespaces are enabled in the daemon.
|
||||||
* `GET /nodes` and `GET /node/(id or name)` now return `Addr` as part of a node's `Status`, which is the address that that node connects to the manager from.
|
* `GET /nodes` and `GET /node/(id or name)` now return `Addr` as part of a node's `Status`, which is the address that that node connects to the manager from.
|
||||||
* The `HostConfig` field now includes `NanoCPUs` that represents CPU quota in units of 10<sup>-9</sup> CPUs.
|
* The `HostConfig` field now includes `NanoCPUs` that represents CPU quota in units of 10<sup>-9</sup> CPUs.
|
||||||
|
* `GET /info` now returns more structured information about security options.
|
||||||
|
|
||||||
### v1.24 API changes
|
### v1.24 API changes
|
||||||
|
|
||||||
|
|
|
@ -2509,10 +2509,26 @@ Display system-wide information
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"SecurityOptions": [
|
"SecurityOptions": [
|
||||||
"apparmor",
|
{
|
||||||
"seccomp",
|
"Key": "Name",
|
||||||
"selinux",
|
"Value": "seccomp"
|
||||||
"userns"
|
},
|
||||||
|
{
|
||||||
|
"Key": "Profile",
|
||||||
|
"Value": "default"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Key": "Name",
|
||||||
|
"Value": "apparmor"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Key": "Name",
|
||||||
|
"Value": "selinux"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Key": "Name",
|
||||||
|
"Value": "userns"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"ServerVersion": "1.9.0",
|
"ServerVersion": "1.9.0",
|
||||||
"SwapLimit": false,
|
"SwapLimit": false,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue