Each node has a maximum capacity for each of the resource types: the amount of CPU and memory it can provide for Pods so if it exceeds host limit it wil lbe terminated for sure.
If you do not specify a CPU limit for a Container, then one of these situations applies:
1) The Container has no upper bound on the CPU resources it can use. The Container could use all of the CPU resources available on the Node where it is running.
2) The Container is running in a namespace that has a default CPU limit, and the Container is automatically assigned the default limit. Cluster administrators can use a LimitRange to specify a default value for the CPU limit.
Describe command will give you all details about a worker node
$ kubectl describe nodes k8s-node01
Name: k8s-node01
Roles: <none>
Labels: beta.kubernetes.io/arch=amd64
Taints: <none>
Unschedulable: false
Capacity:
cpu: 4
ephemeral-storage: 40593708Ki
hugepages-1Gi: 0
hugepages-2Mi: 0
memory: 16432224Ki
pods: 110
Allocatable:
cpu: 4
ephemeral-storage: 37411161231
hugepages-1Gi: 0
hugepages-2Mi: 0
memory: 16329824Ki
pods: 110
System Info:
Machine ID: 15b4b4728a454166acafff508d4022e8
System UUID: 15B4B472-8A45-4166-ACAF-FF508D4022E8
Boot ID: bf52803c-9123-49e2-967b-2585401f958f
Kernel Version: 4.4.0-169-generic
OS Image: Ubuntu 16.04.6 LTS
Operating System: linux
Architecture: amd64
Container Runtime Version: docker://19.3.4
Kubelet Version: v1.17.2
Kube-Proxy Version: v1.17.2
PodCIDR: 192.168.1.0/24
PodCIDRs: 192.168.1.0/24
Non-terminated Pods: (3 in total)
Namespace Name CPU Requests CPU Limits Memory Requests Memory Limits AGE
--------- ---- ------------ ---------- --------------- ------------- ---
kube-system calico-node-j45l6 250m (6%) 0 (0%) 0 (0%) 0 (0%) 7h1m
kube-system kube-proxy-7w5fc 0 (0%) 0 (0%) 0 (0%) 0 (0%) 7h1m
mynamespace nginx 0 (0%) 0 (0%) 0 (0%) 0 (0%) 33m
Allocated resources:
(Total limits may be over 100 percent, i.e., overcommitted.)
Resource Requests Limits
-------- -------- ------
cpu 250m (6%) 0 (0%)
memory 0 (0%) 0 (0%)
ephemeral-storage 0 (0%) 0 (0%)
Events: <none>