默认情况下,image-gc-high-threshold和image-gc-low-threshold值分别为90%和80%。
我们想将它们更改为80和70,我们如何更改Kubernetes图像垃圾收集阈值。
提前致谢。
答案 0 :(得分:0)
可以使用kubelet
上的开关来更改垃圾回收阈值。
来自the docs
--image-gc-high-threshold int32 The percent of disk usage after which image garbage collection is always run. (default 85)
--image-gc-low-threshold int32 The percent of disk usage before which image garbage collection is never run. Lowest disk usage to garbage collect to. (default 80)
答案 1 :(得分:0)
基本上,您可以覆盖默认用户值,如下面的文档中所述。
https://kubernetes.io/docs/concepts/cluster-administration/kubelet-garbage-collection/