diff options
author | baude <bbaude@redhat.com> | 2018-11-13 10:53:18 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2018-11-19 09:05:24 -0600 |
commit | f11a74e7150c2929a0ed18732ee0c4895f7e75be (patch) | |
tree | 779c097e2b02134d60986dc8950a76695202a8b7 /cmd/podman/main.go | |
parent | 47ffaae840157dba421b018738416a3e4cc56a04 (diff) | |
download | podman-f11a74e7150c2929a0ed18732ee0c4895f7e75be.tar.gz podman-f11a74e7150c2929a0ed18732ee0c4895f7e75be.tar.bz2 podman-f11a74e7150c2929a0ed18732ee0c4895f7e75be.zip |
output libpod container to kubernetes yaml
scope out new kube subcommand where we can add generate. you can now generate kubernetes
YAML that will allow you to run the container in a kubernetes environment. When
The YAML description will always "wrap" a container in a simple v1.Pod description.
Tests and further documentation will be added in additional PRs.
This function should be considered very much "under heavy development" at
this point.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/main.go')
-rw-r--r-- | cmd/podman/main.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/main.go b/cmd/podman/main.go index 38eac4504..6be192593 100644 --- a/cmd/podman/main.go +++ b/cmd/podman/main.go @@ -77,6 +77,7 @@ func main() { infoCommand, inspectCommand, killCommand, + kubeCommand, loadCommand, loginCommand, logoutCommand, |