8000 OCPBUGS-54665: [release-1.29] : Disable pull-progress-timeout per default by openshift-cherrypick-robot · Pull Request #9145 · cri-o/cri-o · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

OCPBUGS-54665: [release-1.29] : Disable pull-progress-timeout per default #9145

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: release-1.29
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/crio.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ crio [GLOBAL OPTIONS] command [COMMAND OPTIONS] [ARGUMENTS...]

**--profile-port**="": Port for the pprof profiler. (default: 6060)

**--pull-progress-timeout**="": The timeout for an image pull to make progress until the pull operation gets canceled. This value will be also used for calculating the pull progress interval to --pull-progress-timeout / 10. Can be set to 0 to disable the timeout as well as the progress output. (default: 10s)
**--pull-progress-timeout**="": The timeout for an image pull to make progress until the pull operation gets canceled. This value will be also used for calculating the pull progress interval to --pull-progress-timeout / 10. Can be set to 0 to disable the timeout as well as the progress output. (default: 0s)

**--rdt-config-file**="": Path to the RDT configuration file for configuring the resctrl pseudo-filesystem.

Expand Down
2 changes: 1 addition & 1 deletion docs/crio.conf.5.md
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ CRI-O reads its configured registries defaults from the system wide containers-r
**separate_pull_cgroup**=""
[EXPERIMENTAL] If its value is set, then images are pulled into the specified cgroup. If its value is set to "pod", then the pod's cgroup is used. It is currently supported only with the systemd cgroup manager.

**pull_progress_timeout**="10s"
**pull_progress_timeout**="0s"
The timeout for an image pull to make progress until the pull operation gets canceled. This value will be also used for calculating the pull progress interval to pull_progress_timeout / 10. Can be set to 0 to disable the timeout as well as the progress output.

## CRIO.NETWORK TABLE
Expand Down
2 changes: 1 addition & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ func DefaultConfig() (*Config, error) {
PauseCommand: "/pause",
ImageVolumes: ImageVolumesMkdir,
SignaturePolicyDir: "/etc/crio/policies",
PullProgressTimeout: 10 * time.Second,
PullProgressTimeout: 0,
},
NetworkConfig: NetworkConfig{
NetworkDir: cniConfigDir,
Expand Down
Loading
0