UNPKG

kubernetes-models

Version:
10 lines (9 loc) 480 B
import { Model, setSchema } from "@kubernetes-models/base"; import { addSchema } from "../_schemas/IoK8sApiCoreV1HostPathVolumeSource.mjs"; /** * Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling. */ export class HostPathVolumeSource extends Model { } setSchema(HostPathVolumeSource, "io.k8s.api.core.v1.HostPathVolumeSource", addSchema); export { HostPathVolumeSource as IoK8sApiCoreV1HostPathVolumeSource };