Does the nodes of a Kubernetes cluster share memory Does the nodes of a Kubernetes cluster share memory kubernetes kubernetes

Does the nodes of a Kubernetes cluster share memory


No, separate pods do not generally share anything even if running on the same physical node. There are ways around this if you are very very careful and fancy but the idea is for pods to be independent anyway. Within a single pod it's easier, you can use normal shmem, but this is pretty rare since there isn't much reason to do that usually.