mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-13 21:34:40 +03:00
crio: add option pull_progress_timeout (#12555)
This commit is contained in:
@@ -32,6 +32,8 @@ crio_registry_auth: []
|
|||||||
crio_seccomp_profile: ""
|
crio_seccomp_profile: ""
|
||||||
crio_selinux: "{{ (preinstall_selinux_state == 'enforcing') | lower }}"
|
crio_selinux: "{{ (preinstall_selinux_state == 'enforcing') | lower }}"
|
||||||
crio_signature_policy: "{% if ansible_os_family == 'ClearLinux' %}/usr/share/defaults/crio/policy.json{% endif %}"
|
crio_signature_policy: "{% if ansible_os_family == 'ClearLinux' %}/usr/share/defaults/crio/policy.json{% endif %}"
|
||||||
|
# Set the pull progress timeout
|
||||||
|
crio_pull_progress_timeout: "10s"
|
||||||
|
|
||||||
# Override system default for storage driver
|
# Override system default for storage driver
|
||||||
# crio_storage_driver: "overlay"
|
# crio_storage_driver: "overlay"
|
||||||
|
|||||||
@@ -348,6 +348,12 @@ signature_policy = "{{ crio_signature_policy }}"
|
|||||||
# ignore; the latter will ignore volumes entirely.
|
# ignore; the latter will ignore volumes entirely.
|
||||||
image_volumes = "mkdir"
|
image_volumes = "mkdir"
|
||||||
|
|
||||||
|
# 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.
|
||||||
|
pull_progress_timeout = "{{ crio_pull_progress_timeout }}"
|
||||||
|
|
||||||
# The crio.network table containers settings pertaining to the management of
|
# The crio.network table containers settings pertaining to the management of
|
||||||
# CNI plugins.
|
# CNI plugins.
|
||||||
[crio.network]
|
[crio.network]
|
||||||
|
|||||||
Reference in New Issue
Block a user