aboutsummaryrefslogtreecommitdiff
path: root/cmd/podman/kube/generate.go
Commit message (Collapse)AuthorAge
* Replace deprecated ioutilChris Evich2022-09-20
| | | | | | | | | | Package `io/ioutil` was deprecated in golang 1.16, preventing podman from building under Fedora 37. Fortunately, functionality identical replacements are provided by the packages `io` and `os`. Replace all usage of all `io/ioutil` symbols with appropriate substitutions according to the golang docs. Signed-off-by: Chris Evich <cevich@redhat.com>
* Fix podman kube generate --help to show correct help messageDaniel J Walsh2022-08-16
| | | | Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
* Add "podman kube generate" commandNiall Crowe2022-08-11
"podman kube generate" creates Kubernetes YAML from Podman containers, pods or volumes. Users will still be able to use "podman generate kube" as an alias of "kube generate". Signed-off-by: Niall Crowe <nicrowe@redhat.com>