Add options to control images pulling of kubelet (#11094)

Signed-off-by: tu1h <lihai.tu@daocloud.io>
This commit is contained in:
Lihai Tu
2024-06-21 22:54:54 +08:00
committed by GitHub
parent 24dc4cef56
commit 921b0c0bed
3 changed files with 6 additions and 0 deletions

View File

@@ -268,3 +268,6 @@ conntrack_modules:
kubelet_tracing: false
kubelet_tracing_endpoint: 0.0.0.0:4317
kubelet_tracing_sampling_rate_per_million: 100
# The maximum number of image pulls in parallel. Set it to a integer great than 1 to enable image pulling in parallel.
kubelet_max_parallel_image_pulls: 1

View File

@@ -175,3 +175,4 @@ tracing:
endpoint: {{ kubelet_tracing_endpoint }}
samplingRatePerMillion: {{ kubelet_tracing_sampling_rate_per_million }}
{% endif %}
maxParallelImagePulls: {{ kubelet_max_parallel_image_pulls }}