slides here: [PUBLIC] Deep Dive_ Handling Kubernetes Memory Pressure & Achieving Workload Stability With NodeSwap.pptx.pdf
// From a 1.32 GKE node -- 8GB ubuntu
$ sysctl vm.min_free_kbytes
vm.min_free_kbytes = 67584 // ~68MB
Linux kernel will set this value based on RAM size and thp pagesizes - a good explanation of how it gets 68MB in x86 systems is here.
From kernel bits --