specs: add json notation
Signed-off-by: Lai Jiangshan <jiangshanlai@gmail.com>
This commit is contained in:
parent
5c98addb2b
commit
2e186c62c3
|
@ -97,7 +97,7 @@ in [the man page](http://man7.org/linux/man-pages/man7/capabilities.7.html)
|
||||||
sysctl allows kernel parameters to be modified at runtime for the container.
|
sysctl allows kernel parameters to be modified at runtime for the container.
|
||||||
For more information, see [the man page](http://man7.org/linux/man-pages/man8/sysctl.8.html)
|
For more information, see [the man page](http://man7.org/linux/man-pages/man8/sysctl.8.html)
|
||||||
|
|
||||||
```
|
```json
|
||||||
"sysctl": {
|
"sysctl": {
|
||||||
"net.ipv4.ip_forward": "1",
|
"net.ipv4.ip_forward": "1",
|
||||||
"net.core.somaxconn": "256"
|
"net.core.somaxconn": "256"
|
||||||
|
@ -106,7 +106,7 @@ For more information, see [the man page](http://man7.org/linux/man-pages/man8/sy
|
||||||
|
|
||||||
## Linux rlimits
|
## Linux rlimits
|
||||||
|
|
||||||
```
|
```json
|
||||||
"rlimits": [
|
"rlimits": [
|
||||||
{
|
{
|
||||||
"type": "RLIMIT_NPROC",
|
"type": "RLIMIT_NPROC",
|
||||||
|
@ -120,7 +120,7 @@ rlimits allow setting resource limits. The type is from the values defined in [t
|
||||||
|
|
||||||
## Linux user namespace mappings
|
## Linux user namespace mappings
|
||||||
|
|
||||||
```
|
```json
|
||||||
"uidMappings": [
|
"uidMappings": [
|
||||||
{
|
{
|
||||||
"hostID": 1000,
|
"hostID": 1000,
|
||||||
|
@ -142,7 +142,7 @@ uid/gid mappings describe the user namespace mappings from the host to the conta
|
||||||
## Rootfs Mount Propagation
|
## Rootfs Mount Propagation
|
||||||
rootfsPropagation sets the rootfs's mount propagation. Its value is either slave, private, or shared. [The kernel doc](https://www.kernel.org/doc/Documentation/filesystems/sharedsubtree.txt) has more information about mount propagation.
|
rootfsPropagation sets the rootfs's mount propagation. Its value is either slave, private, or shared. [The kernel doc](https://www.kernel.org/doc/Documentation/filesystems/sharedsubtree.txt) has more information about mount propagation.
|
||||||
|
|
||||||
```
|
```json
|
||||||
"rootfsPropagation": "slave",
|
"rootfsPropagation": "slave",
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue