UNPKG

kubernetes-models

Version:
10 lines (9 loc) 407 B
import { Model, setSchema } from "@kubernetes-models/base"; import { addSchema } from "../_schemas/IoK8sApiCoreV1HostAlias.mjs"; /** * HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file. */ export class HostAlias extends Model { } setSchema(HostAlias, "io.k8s.api.core.v1.HostAlias", addSchema); export { HostAlias as IoK8sApiCoreV1HostAlias };