Skip to content

Commit dedeb24

Browse files
Merge pull request #26931 from jelly/mention-zst
Mention zstandard tarball import support
2 parents 7f50da7 + b9812e3 commit dedeb24

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cmd/podman/images/import.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
)
1919

2020
var (
21-
importDescription = `Create a container image from the contents of the specified tarball (.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz).
21+
importDescription = `Create a container image from the contents of the specified tarball (.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz, .tar.zst).
2222
2323
Note remote tar balls can be specified, via web address.
2424
Optionally tag the image. You can specify the instructions using the --change option.`

cmd/podman/volumes/import.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
)
1414

1515
var (
16-
importDescription = `Imports contents into a podman volume from specified tarball (.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz).`
16+
importDescription = `Imports contents into a podman volume from specified tarball (.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz, .tar.zst).`
1717
importCommand = &cobra.Command{
1818
Use: "import VOLUME [SOURCE]",
1919
Short: "Import a tarball contents into a podman volume",

docs/source/markdown/podman-kube-play.1.md.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ A Kubernetes PersistentVolumeClaim represents a Podman named volume. Only the Pe
7474
- volume.podman.io/import-source
7575
- volume.podman.io/image
7676

77-
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
77+
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
7878

7979
Kube play is capable of building images on the fly given the correct directory layout and Containerfiles. This
8080
option is not available for remote clients, including Mac and Windows (excluding WSL2) machines, yet. Consider the following excerpt from a YAML file:

0 commit comments

Comments
 (0)