kubernetes-models
Version:
10 lines (9 loc) • 602 B
JavaScript
import { Model, setSchema } from "@kubernetes-models/base";
import { addSchema } from "../../_schemas/IoK8sApiAppsV1StatefulSetUpdateStrategy.mjs";
/**
* StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.
*/
export class StatefulSetUpdateStrategy extends Model {
}
setSchema(StatefulSetUpdateStrategy, "io.k8s.api.apps.v1.StatefulSetUpdateStrategy", addSchema);
export { StatefulSetUpdateStrategy as IoK8sApiAppsV1StatefulSetUpdateStrategy };