kubernetes-models
Version:
10 lines (9 loc) • 443 B
JavaScript
import { Model, setSchema } from "@kubernetes-models/base";
import { addSchema } from "../_schemas/IoK8sApiCoreV1Toleration.mjs";
/**
* The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.
*/
export class Toleration extends Model {
}
setSchema(Toleration, "io.k8s.api.core.v1.Toleration", addSchema);
export { Toleration as IoK8sApiCoreV1Toleration };