diff options
author | baude <bbaude@redhat.com> | 2018-12-09 14:26:21 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2018-12-19 14:20:55 -0600 |
commit | 9b03cacc87c4d59fc301c21ef73ddc301ec753fb (patch) | |
tree | ec7318272db56a8a3ba11b5ac1b01d262b21742c /cmd/podman/varlink | |
parent | eddfe6ba628d17435559ba32a8ef748c386105aa (diff) | |
download | podman-9b03cacc87c4d59fc301c21ef73ddc301ec753fb.tar.gz podman-9b03cacc87c4d59fc301c21ef73ddc301ec753fb.tar.bz2 podman-9b03cacc87c4d59fc301c21ef73ddc301ec753fb.zip |
Add Play
podman play kube adds the ability for the user to recreate pods and containers
from a Kubernetes YAML file in libpod.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/varlink')
-rw-r--r-- | cmd/podman/varlink/io.podman.varlink | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cmd/podman/varlink/io.podman.varlink b/cmd/podman/varlink/io.podman.varlink index 376bbc950..c1b7c703a 100644 --- a/cmd/podman/varlink/io.podman.varlink +++ b/cmd/podman/varlink/io.podman.varlink @@ -1016,6 +1016,18 @@ method UnmountContainer(name: string, force: bool) -> () # This function is not implemented yet. method ListContainerPorts(name: string) -> (notimplemented: NotImplemented) +# GenerateKube generates a Kubernetes v1 Pod description of a Podman container or pod +# and its containers. The description is in YAML. See also [ReplayKube](ReplayKube). +method GenerateKube() -> (notimplemented: NotImplemented) + +# GenerateKubeService generates a Kubernetes v1 Service description of a Podman container or pod +# and its containers. The description is in YAML. See also [GenerateKube](GenerateKube). +method GenerateKubeService() -> (notimplemented: NotImplemented) + +# ReplayKube recreates a pod and its containers based on a Kubernetes v1 Pod description (in YAML) +# like that created by GenerateKube. See also [GenerateKube](GenerateKube). +method ReplayKube() -> (notimplemented: NotImplemented) + # ImageNotFound means the image could not be found by the provided name or ID in local storage. error ImageNotFound (name: string) |