vendor: bump containers/common

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
Giuseppe Scrivano
2023-06-21 14:16:20 +02:00
parent 6633a91c5a
commit 459248337b
6 changed files with 20 additions and 4 deletions

View File

@ -510,6 +510,9 @@ type EngineConfig struct {
// CompressionFormat is the compression format used to compress image layers.
CompressionFormat string `toml:"compression_format,omitempty"`
// CompressionLevel is the compression level used to compress image layers.
CompressionLevel *int `toml:"compression_level,omitempty"`
}
// SetOptions contains a subset of options in a Config. It's used to indicate if

View File

@ -381,6 +381,12 @@ default_sysctls = [
#
#compression_format = "gzip"
# The compression level to use when pushing an image.
# Valid options depend on the compression format used.
# For gzip, valid options are 1-9, with a default of 5.
# For zstd, valid options are 1-20, with a default of 3.
#
#compression_level = 5
# Cgroup management implementation used for the runtime.
# Valid options "systemd" or "cgroupfs"

View File

@ -311,6 +311,13 @@ default_sysctls = [
#
#compression_format = "gzip"
# The compression level to use when pushing an image.
# Valid options depend on the compression format used.
# For gzip, valid options are 1-9, with a default of 5.
# For zstd, valid options are 1-20, with a default of 3.
#
#compression_level = 5
# Environment variables to pass into conmon
#
#conmon_env_vars = [