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 /cmd/podman/varlink | |
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 'cmd/podman/varlink')
-rw-r--r-- | cmd/podman/varlink/io.podman.varlink | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/podman/varlink/io.podman.varlink b/cmd/podman/varlink/io.podman.varlink index 810f757ca..4a4a1854c 100644 --- a/cmd/podman/varlink/io.podman.varlink +++ b/cmd/podman/varlink/io.podman.varlink @@ -820,6 +820,10 @@ error PodNotFound (name: string) # a container ID of the container that failed. error PodContainerError (podname: string, errors: []PodContainerErrorData) +# NoContainersInPod means a pod has no containers on which to perform the operation. It contains +# the pod ID. +error NoContainersInPod (name: string) + # ErrorOccurred is a generic error for an error that occurs during the execution. The actual error message # is includes as part of the error's text. error ErrorOccurred (reason: string) |