File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -27,13 +27,16 @@ config of _disabling traefik_ that comes built in. We deploy nginx as part of ou
2727do not need traefik.
2828
29291 . Create a Kubelet Config file in ` /etc/kubelet.yaml ` so we can
30- tweak various kubelet options, including maximum number of pods on a single
31- node:
30+ tweak various kubelet options, including maximum number of pods on a single node and when to cleanup unused images:
3231
3332 ``` yaml
3433 apiVersion : kubelet.config.k8s.io/v1beta1
3534 kind : KubeletConfiguration
3635 maxPods : 300
36+ # Clean up images pulled by kubernetes anytime we are over
37+ # 40% disk usage until we hit 20%
38+ imageGCHighThresholdPercent : 40
39+ imageGCLowThresholdPercent : 20
3740 ` ` `
3841
3942 We will need to develop better intuition for how many pods per node, but given we offer about
You can’t perform that action at this time.
0 commit comments