Привет
У Kubernetes есть ограничения по количеству подов на worker node’у и на кластер и т. д.
https://kubernetes.io/docs/setup/best-practices/cluster-large/
A cluster is a set of nodes (physical or virtual machines) running Kubernetes agents, managed by the control plane. Kubernetes v1.22 supports clusters with up to 5000 nodes. More specifically, Kubernetes is designed to accommodate configurations that meet all of the following criteria:
No more than 110 pods per node
No more than 5000 nodes
No more than 150000 total pods
No more than 300000 total containers
Подскажите, пожалуйста, как правильно подсчитать количество подов?
Например, Job’ы считаются? Ведь на какой-то промежуток времени это запущенный под, насколько я понимаю. Если у нас ограничение на 110 подов на ноду, у нас 110 подов из ReplicaSet/StatefulSet/DaemonSet и плюс 50 Job, мы укладываемся в ограничение?