How does Kubernetes schedule deployments that don't define memory or cpu request/limit?
i.e. spec.containers[].resources is missing from the deployment.
When calling kubectl describe node node_name
on a node running such pod the resources section displays the following:
Name CPU Requests CPU Limits Memory Requests Memory Limits
Pod_Name 0 (0%) 0 (0%) 0 (0%) 0 (0%)
What does it mean?
I couldn't find any documentation.
Some Helm chart default configuration are missing the resources section and I don't know what is the effect.