This message was deleted.
# rke2
a
This message was deleted.
h
this is one of my downstream cluster (on prim) created from Rancher UI (not sure if that makes any difference)
c
It sounds like you’re talking about kubelet image pruning and garbage collection… which cleans up pulled images, not the whole directory
Copy code
kubelet-arg:
  - "eviction-hard=imagefs.available<15%,memory.available<100Mi,nodefs.available<10%,nodefs.inodesFree<5%"
  - "eviction-pressure-transition-period=5m0s"
  - "image-gc-high-threshold=65"
  - "image-gc-low-threshold=50"
https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/
h
oh correct - my question was messy - sorry
c
this is all just kubelet stuff, not RKE2 specific. so you can reference the upstream docs.
👍 1