From b9812e3d9e5e917128a5ba167a20120ff7ac5369 Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Fri, 29 Aug 2025 17:51:04 +0200 Subject: [PATCH] Mention zstandard tarball import support The `podman-import` man page already mentions support for zstd compressed tarball support but the cli output didn't. Signed-off-by: Jelle van der Waa --- cmd/podman/images/import.go | 2 +- cmd/podman/volumes/import.go | 2 +- docs/source/markdown/podman-kube-play.1.md.in | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/podman/images/import.go b/cmd/podman/images/import.go index 1a039726a1..6476260699 100644 --- a/cmd/podman/images/import.go +++ b/cmd/podman/images/import.go @@ -18,7 +18,7 @@ import ( ) var ( - importDescription = `Create a container image from the contents of the specified tarball (.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz). + importDescription = `Create a container image from the contents of the specified tarball (.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz, .tar.zst). Note remote tar balls can be specified, via web address. Optionally tag the image. You can specify the instructions using the --change option.` diff --git a/cmd/podman/volumes/import.go b/cmd/podman/volumes/import.go index 2790d1bf3f..4a18949672 100644 --- a/cmd/podman/volumes/import.go +++ b/cmd/podman/volumes/import.go @@ -13,7 +13,7 @@ import ( ) var ( - importDescription = `Imports contents into a podman volume from specified tarball (.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz).` + importDescription = `Imports contents into a podman volume from specified tarball (.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz, .tar.zst).` importCommand = &cobra.Command{ Use: "import VOLUME [SOURCE]", Short: "Import a tarball contents into a podman volume", diff --git a/docs/source/markdown/podman-kube-play.1.md.in b/docs/source/markdown/podman-kube-play.1.md.in index f2e603ddb2..0d4cbec4a6 100644 --- a/docs/source/markdown/podman-kube-play.1.md.in +++ b/docs/source/markdown/podman-kube-play.1.md.in @@ -74,7 +74,7 @@ A Kubernetes PersistentVolumeClaim represents a Podman named volume. Only the Pe - volume.podman.io/import-source - volume.podman.io/image -Use `volume.podman.io/import-source` to import the contents of the tarball (.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz) specified in the annotation's value into the created Podman volume +Use `volume.podman.io/import-source` to import the contents of the tarball (.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz, .tar.zst) specified in the annotation's value into the created Podman volume Kube play is capable of building images on the fly given the correct directory layout and Containerfiles. This option is not available for remote clients, including Mac and Windows (excluding WSL2) machines, yet. Consider the following excerpt from a YAML file: