Skip to content

Commit

Permalink
[v4.6] Remove zstd:chunked reference
Browse files Browse the repository at this point in the history
Remove the references of the zstd:chunked encryption algorithm as
this will not be supported in RHEL 8.9/9.3 in Podman v4.6.1.  Support
is expected in Podman v4.7 and later.

[NO NEW TESTS NEEDED]
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
  • Loading branch information
TomSweeneyRedHat committed Aug 8, 2023
1 parent 3ecd29f commit 2d02865
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/podman/common/completion.go
Original file line number Diff line number Diff line change
Expand Up @@ -1632,7 +1632,7 @@ func AutocompleteCheckpointCompressType(cmd *cobra.Command, args []string, toCom

// AutocompleteCompressionFormat - Autocomplete compression-format type options.
func AutocompleteCompressionFormat(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
types := []string{"gzip", "zstd", "zstd:chunked"}
types := []string{"gzip", "zstd"}
return types, cobra.ShellCompDirectiveNoFileComp
}

Expand Down
4 changes: 2 additions & 2 deletions docs/source/markdown/options/compression-format.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
####> podman manifest push, push
####> If file is edited, make sure the changes
####> are applicable to all of those.
#### **--compression-format**=**gzip** | *zstd* | *zstd:chunked*
#### **--compression-format**=**gzip** | *zstd*

Specifies the compression format to use. Supported values are: `gzip`, `zstd` and `zstd:chunked`. The default is `gzip` unless overridden in the containers.conf file.
Specifies the compression format to use. Supported values are: `gzip`, and `zstd`. The default is `gzip` unless overridden in the containers.conf file.

0 comments on commit 2d02865

Please sign in to comment.