diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-09-25 10:09:16 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2018-10-01 07:24:50 -0700 |
commit | 9074565f4e623124f17ce02657e35d658abafae5 (patch) | |
tree | 6177fa9a72650f6d5ce4cdc2dca0b86dc17c69cd /API.md | |
parent | df978a264d7944351e7cded0a9506cab8a7bb0db (diff) | |
download | podman-9074565f4e623124f17ce02657e35d658abafae5.tar.gz podman-9074565f4e623124f17ce02657e35d658abafae5.tar.bz2 podman-9074565f4e623124f17ce02657e35d658abafae5.zip |
Implement pod varlink bindings
* Update varlink document
* Add NoContainersInPod error in go and python
* Add support for varlink pod interface
* New code passes pylint
* Fix bug in test_runner.sh
* Update integration tests for race condition on status check
* Add missing port config file support
Signed-off-by: Jhon Honce <jhonce@redhat.com>
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 |