This message was deleted.
# k3s
a
This message was deleted.
c
If I don’t have requests or limits in my pod spec it still crashes the node(NotReady state).
Yes, if you don’t put any limits on your pod, it is allowed to consume all the resources on your node - and with only 1GB of memory, that’s not going to take much. If you want the pod to not consume all the resources, you need to use limits. The kubelet reserved args only inform the scheduler how much to reserve for those functions. If you don’t place any requests or limits on the pod then setting the reservations is meaningless.
👍 1