UNPKG

kubernetes-models

Version:
10 lines (9 loc) 478 B
import { Model, setSchema } from "@kubernetes-models/base"; import { addSchema } from "../_schemas/IoK8sApiCoreV1PodStatus.mjs"; /** * PodStatus represents information about the status of a pod. Status may trail the actual state of a system, especially if the node that hosts the pod cannot contact the control plane. */ export class PodStatus extends Model { } setSchema(PodStatus, "io.k8s.api.core.v1.PodStatus", addSchema); export { PodStatus as IoK8sApiCoreV1PodStatus };