@kubernetes-models/autoscaler
Version:
Kubernetes Autoscaler models
8 lines (7 loc) • 452 B
TypeScript
/**
* ContainerScalingMode controls whether autoscaler is enabled for a specific
* container.
*/
export type IContainerScalingMode = "Auto" | "Off";
export type ContainerScalingMode = IContainerScalingMode;
export type { IContainerScalingMode as IIoK8sAutoscalerVerticalPodAutoscalerPkgApisAutoscalingK8sIoV1beta2ContainerScalingMode, ContainerScalingMode as IoK8sAutoscalerVerticalPodAutoscalerPkgApisAutoscalingK8sIoV1beta2ContainerScalingMode };