8000 OCPBUGS-54663: [release-1.31] : Increase pull-progress-timeout to `30s` by openshift-cherrypick-robot · Pull Request #9114 · cri-o/cri-o · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

OCPBUGS-54663: [release-1.31] : Increase pull-progress-timeout to 30s #9114

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

Closed
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 @@ -383,7 +383,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: 30s)

**--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 @@ -494,7 +494,7 @@ Path to the temporary directory to use for storing big files, used to store imag
**auto_reload_registries**=false
If true, CRI-O will automatically reload the mirror registry when there is an update to the 'registries.conf.d' directory. Default value is set to 'false'.

**pull_progress_timeout**="10s"
**pull_progress_timeout**="30s"
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 @@ -956,7 +956,7 @@ func DefaultConfig() (*Config, error) {
PauseCommand: "/pause",
ImageVolumes: ImageVolumesMkdir,
SignaturePolicyDir: "/etc/crio/policies",
PullProgressTimeout: 10 * time.Second,
PullProgressTimeout: 30 * time.Second,
},
NetworkConfig: NetworkConfig{
NetworkDir: cniConfigDir,
Expand Down
Loading
0