kubernetes-models
Version:
23 lines (22 loc) • 831 B
TypeScript
import { IIoK8sApimachineryPkgApiResourceQuantity } from "@kubernetes-models/apimachinery/api/resource/Quantity";
import { Model } from "@kubernetes-models/base";
/**
* Overhead structure represents the resource overhead associated with running a pod.
*/
export interface IOverhead {
/**
* PodFixed represents the fixed resource overhead associated with running a pod.
*/
"podFixed"?: {
[key: string]: IIoK8sApimachineryPkgApiResourceQuantity;
};
}
/**
* Overhead structure represents the resource overhead associated with running a pod.
*/
export declare class Overhead extends Model<IOverhead> implements IOverhead {
"podFixed"?: {
[key: string]: IIoK8sApimachineryPkgApiResourceQuantity;
};
}
export { IOverhead as IIoK8sApiNodeV1Overhead, Overhead as IoK8sApiNodeV1Overhead };