kubernetes-models
Version:
10 lines (9 loc) • 591 B
JavaScript
import { Model, setSchema } from "@kubernetes-models/base";
import { addSchema } from "../../_schemas/IoK8sApiAutoscalingV2PodsMetricSource.mjs";
/**
* PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.
*/
export class PodsMetricSource extends Model {
}
setSchema(PodsMetricSource, "io.k8s.api.autoscaling.v2.PodsMetricSource", addSchema);
export { PodsMetricSource as IoK8sApiAutoscalingV2PodsMetricSource };