This message was deleted.
# k3s
a
This message was deleted.
c
you have provided no information on your disk layout or how much is actually used/free on any of the partitions. Have you looked at that yet?
https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/ > --image-gc-high-threshold int32 Default: 85 > The percent of disk usage after which image garbage collection is always run. Values must be within the range [0, 100], To disable image garbage collection, set to 100. > --image-gc-low-threshold int32 Default: 80 > The percent of disk usage before which image garbage collection is never run. Lowest disk usage to garbage collect to. Values must be within the range [0, 100] and should not be larger than that of --image-gc-high-threshold. The kubelet is trying to gc down to 80% disk free. You are at 81% and apparently it cannot find any more unused images to remove to free space. You can change that setting, or find some other way to make more space available.
g
please note that you have a 1TB drive, but your / is only 100GB, and everything is there, logs, os, kubernetes, container images, you're not using /data at all (which is 800GB)
b
Any reference on how can I change / increase the ephmeral storage for this kubelet or increase the eviction threshold ?
c
Yes I linked you to the docs on how to change the thresholds. But a better idea would be to increase the size of the correct partition instead of allocating your space to a location that is not used by Kubernetes
👍 1