diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-08-12 21:09:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-12 21:09:26 +0200 |
commit | 3cf4567e1dfcf172673694a1171ae18bcbf9c846 (patch) | |
tree | c548449339f9f2affdb043c1fcce55d2fb5c79ac /API.md | |
parent | 9bee6907a5d867ab866374c6c7d8a45e3fa705da (diff) | |
parent | 55cc80d3c9bfd96225db179b96427aa377ecb9dc (diff) | |
download | podman-3cf4567e1dfcf172673694a1171ae18bcbf9c846.tar.gz podman-3cf4567e1dfcf172673694a1171ae18bcbf9c846.tar.bz2 podman-3cf4567e1dfcf172673694a1171ae18bcbf9c846.zip |
Merge pull request #3753 from baude/varlinkrequiresroot
varlink endpoint for containerstats requires root
Diffstat (limited to 'API.md')
-rwxr-xr-x | API.md | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -265,6 +265,8 @@ in the [API.md](https://github.com/containers/libpod/blob/master/API.md) file in [error ErrCtrStopped](#ErrCtrStopped) +[error ErrRequiresCgroupsV2ForRootless](#ErrRequiresCgroupsV2ForRootless) + [error ErrorOccurred](#ErrorOccurred) [error ImageNotFound](#ImageNotFound) @@ -2006,6 +2008,9 @@ ContainerNotFound means the container could not be found by the provided name or ### <a name="ErrCtrStopped"></a>type ErrCtrStopped Container is already stopped +### <a name="ErrRequiresCgroupsV2ForRootless"></a>type ErrRequiresCgroupsV2ForRootless + +This function requires CGroupsV2 to run in rootless mode. ### <a name="ErrorOccurred"></a>type ErrorOccurred ErrorOccurred is a generic error for an error that occurs during the execution. The actual error message |