/* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package v1alpha5 import ( "fmt" v1 "k8s.io/api/core/v1" ) // Limits define bounds on the resources being provisioned by Karpenter type Limits struct { // Resources contains all the allocatable resources that Karpenter supports for limiting. Resources v1.ResourceList `json:"resources,omitempty"` } func (l *Limits) ExceededBy(resources v1.ResourceList) error { if l == nil || l.Resources == nil { return nil } for resourceName, usage := range resources { if limit, ok := l.Resources[resourceName]; ok { if usage.Cmp(limit) > 0 { return fmt.Errorf("%s resource usage of %v exceeds limit of %v", resourceName, usage.AsDec(), limit.AsDec()) } } } return nil }