-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Akihiro Suda <[email protected]> Signed-off-by: Amir M. Ghazanfari <[email protected]>
- Loading branch information
1 parent
c611a21
commit 660c816
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
% runc-features "8" | ||
|
||
# NAME | ||
**runc-features** - show implemented features | ||
|
||
# SYNOPSIS | ||
**runc features** | ||
|
||
# DESCRIPTION | ||
The **features** command shows the implemented features in JSON format. Features are properties of runc, such as the minimum and maximum accepted OCI versions. The implemented features may not always be available, depending on the kernel version, system libraries, CPU architecture, etc. For more information about features, you can check the features section in the runtime-spec on GitHub. | ||
|
||
# PROPERTIES | ||
* **ociVersionMin**: Minimum OCI version that runc can accept. | ||
* **ociVersionMax**: Maximum OCI version that runc can accept. | ||
* **hooks**: List of hooks that runc supports. Consider hooks as defined stages that can run different commands. | ||
* **mountOptions**: List of available options for the runtime to mount a file system. Note that if an option is in the list, it does not necessarily mean your OS supports it. | ||
* **linux**: For runtimes that support Linux (which runc is one of), this option shows some Linux-specific properties such as namespaces, capabilities, cgroups, etc. | ||
* **annotations**: Contains arbitrary metadata about the runtime, such as the version of the runtime. | ||
* **potentiallyUnsafeConfigAnnotations**: Contains a list of values in annotations that can change the runtime's behavior. If it ends with a period, it indicates a prefix for other values. | ||
|
||
# SEE ALSO | ||
**runc**(8). |