Kubernetes v1.35: Extended Toleration Operators to Support Numeric Comparisons (Alpha)
… Nodes can be tainted with their cost rating: spec : taints : - key : "cost-per-hour" value : "50" effect : "NoSchedule" A cost-sensitive batch job can express its tolerance for expensive nodes: tolerations : - key : "cost-per-hour" operator : "Lt" value : "100" effect : "NoSchedule" This batch job … …