You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For DU profiles consider setting the podsPerCore: 0 so there is no restrictions on the number of Pods per physical Core (default to 20) and allowing platform workload to have better oversubscription on resource utilization.
Also, since each node by default gets a /23, increasing the node level limit to 500 (default 250) will also help with dense configurations.
apiVersion: machineconfiguration.openshift.io/v1kind: KubeletConfigmetadata:
name: max-pods-500 spec:
machineConfigPoolSelector:
matchLabels:
custom-kubelet: max-pods-500 kubeletConfig:
# unlimited Pods per corepodsPerCore: 0# max Pods per Node (max must be less than node CIDR)# For /23, the max IP available are 2^(32-23)-2 = 510maxPods: 500
Then apply it to the master role for it to be enabled for the SNO
For DU profiles consider setting the
podsPerCore: 0
so there is no restrictions on the number of Pods per physical Core (default to 20) and allowing platform workload to have better oversubscription on resource utilization.Also, since each node by default gets a /23, increasing the node level limit to 500 (default 250) will also help with dense configurations.
Then apply it to the
master
role for it to be enabled for the SNOThe text was updated successfully, but these errors were encountered: