We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddcab5e commit 2cd66bcCopy full SHA for 2cd66bc
ci/cached-builds/kubeadm.yaml
@@ -59,3 +59,16 @@ controllerManager: {}
59
dns: {}
60
proxy: {}
61
scheduler: {}
62
+---
63
+apiVersion: kubelet.config.k8s.io/v1beta1
64
+kind: KubeletConfiguration
65
+# ISSUE #1326: disable gc, otherwise kubelet would GC Pytorch images causing later tests to fail
66
+# The low threshold must be strictly less than the high threshold
67
+imageGCHighThresholdPercent: 100
68
+imageGCLowThresholdPercent: 99
69
+# https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#minimum-eviction-reclaim
70
+evictionHard:
71
+ # eviction threshold nodefs.available must be positive
72
+ nodefs.available: "1Mi"
73
+ # eviction threshold imagefs.available must be positive
74
+ imagefs.available: "1Mi"
0 commit comments