mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-08-19 20:46:42 +00:00
* chore: add nwa Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: update helm-schema version Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: update helm-schema version Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> --------- Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com>
17 lines
409 B
Go
17 lines
409 B
Go
// Copyright 2020-2025 Project Capsule Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package api
|
|
|
|
import (
|
|
"k8s.io/apimachinery/pkg/api/resource"
|
|
)
|
|
|
|
// +kubebuilder:object:generate=true
|
|
type PoolExhaustionResource struct {
|
|
// Available Resources to be claimed
|
|
Available resource.Quantity `json:"available,omitempty"`
|
|
// Requesting Resources
|
|
Requesting resource.Quantity `json:"requesting,omitempty"`
|
|
}
|