|
1 | 1 | Definitions |
2 | 2 | ----------- |
3 | 3 |
|
4 | | -:rfc2119: http://tools.ietf.org/html/rfc2119 |
5 | 4 | :c99-unspecified: http://www.open-std.org/jtc1/sc22/wg14/www/C99RationaleV5.10.pdf#page=18 |
| 5 | +:json: https://tools.ietf.org/html/rfc7159 |
| 6 | +:namespaces-7: http://man7.org/linux/man-pages/man7/namespaces.7.html |
| 7 | +:rfc2119: http://tools.ietf.org/html/rfc2119 |
| 8 | +:utf-8: http://www.unicode.org/versions/Unicode8.0.0/ch03.pdf |
6 | 9 |
|
7 | 10 | In the specifications in the above table of contents, the keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" are to be interpreted as described in {rfc2119}[RFC 2119] (Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, March 1997). |
8 | 11 |
|
9 | 12 | The keywords "unspecified", "undefined", and "implementation-defined" are to be interpreted as described in the {c99-unspecified}[rationale for the C99 standard]. |
10 | 13 |
|
11 | 14 | An implementation is not compliant for a given CPU architecture if it fails to satisfy one or more of the MUST, REQUIRED, or SHALL requirements for the protocols it implements. |
12 | 15 | An implementation is compliant for a given CPU architecture if it satisfies all the MUST, REQUIRED, and SHALL requirements for the protocols it implements. |
| 16 | + |
| 17 | +[[bundle-definition,bundle]] bundle:: |
| 18 | + A <<bundle,directory structure>> that is written ahead of time, distributed, and used to seed the runtime for creating a <<container>> and launching a process within it. |
| 19 | + |
| 20 | +[[config-definition,configuration]] configuration:: |
| 21 | + The <<config,`config.json`>> file in a <<bundle-definition>> which defines the intended <<container>> and container process. |
| 22 | + |
| 23 | +[[container,container]] container:: |
| 24 | + An environment for executing processes with configurable isolation and resource limitations. |
| 25 | + For example, namespaces, resource limits, and mounts are all part of the container environment. |
| 26 | + |
| 27 | +[[container-namespace,container namespace]] container namespace:: |
| 28 | + On Linux, a leaf in the {namespaces-7}[namespace] hierarchy in which the <<process,configured process>> executes. |
| 29 | + |
| 30 | +[[json,JSON]] JSON:: |
| 31 | + All configuration {json}[JSON] MUST be encoded in {utf-8}[UTF-8]. |
| 32 | + JSON objects MUST NOT include duplicate names. |
| 33 | + The order of entries in JSON objects is not significant. |
| 34 | + |
| 35 | +[[runtime-definition,runtime]] runtime:: |
| 36 | + An implementation of this specification. |
| 37 | + It reads the <<config-definition>> from a <<bundle-definition>>, uses that information to create a <<container>>, launches a process inside the container, and performs other <<runtime,lifecycle actions>>. |
| 38 | + |
| 39 | +[[runtime-namespace,runtime namespace]] runtime namespace:: |
| 40 | + On Linux, a leaf in the {namespaces-7}[namespace] hierarchy from which the <<runtime-definition>> process is executed. |
| 41 | + New <<container-namespace,container namespaces>> will be created as children of the runtime namespaces. |
0 commit comments