kubernetes-models
Version:
12 lines (11 loc) • 442 B
JavaScript
import { Model, setSchema } from "@kubernetes-models/base";
import { addSchema } from "../_schemas/IoK8sApiCoreV1PodIP.mjs";
/**
* IP address information for entries in the (plural) PodIPs field. Each entry includes:
*
* IP: An IP address allocated to the pod. Routable at least within the cluster.
*/
export class PodIP extends Model {
}
setSchema(PodIP, "io.k8s.api.core.v1.PodIP", addSchema);
export { PodIP as IoK8sApiCoreV1PodIP };