[v4.6] Remove zstd:chunked reference

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>
This commit is contained in:
TomSweeneyRedHat 2023-08-08 15:09:34 -04:00
parent 3ecd29fab4
commit 2d02865cb7
2 changed files with 3 additions and 3 deletions

View file

@ -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
}

View file

@ -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.