diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-10-02 08:47:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-02 08:47:53 -0700 |
commit | 89c5804fe0ca3ece7587adb5d5c974dbc494f721 (patch) | |
tree | 042a10e85f659e8ce3d8ab1841752392e53b353d /API.md | |
parent | 08898cb5ac982c9f160e50731616a5ca27e56a09 (diff) | |
parent | ff38edaafefa1cdac9a87a1a08b8f4fcd94ae996 (diff) | |
download | podman-89c5804fe0ca3ece7587adb5d5c974dbc494f721.tar.gz podman-89c5804fe0ca3ece7587adb5d5c974dbc494f721.tar.bz2 podman-89c5804fe0ca3ece7587adb5d5c974dbc494f721.zip |
Merge pull request #1563 from jwhonce/wip/pods
Implement pod varlink bindings
Diffstat (limited to 'API.md')
-rwxr-xr-x | API.md | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -179,6 +179,8 @@ in the [API.md](https://github.com/containers/libpod/blob/master/API.md) file in [error NoContainerRunning](#NoContainerRunning) +[error NoContainersInPod](#NoContainersInPod) + [error PodContainerError](#PodContainerError) [error PodNotFound](#PodNotFound) @@ -1332,6 +1334,10 @@ ImageNotFound means the image could not be found by the provided name or ID in l ### <a name="NoContainerRunning"></a>type NoContainerRunning NoContainerRunning means none of the containers requested are running in a command that requires a running container. +### <a name="NoContainersInPod"></a>type NoContainersInPod + +NoContainersInPod means a pod has no containers on which to perform operation. It contains +the pod ID. ### <a name="PodContainerError"></a>type PodContainerError PodContainerError means a container associated with a pod failed to preform an operation. It contains |