package kubecaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Represents a host path mapped into a pod. Host path volumes do not support ownership management or Se_linux relabeling.

type t
val to_yojson : t -> Yojson.Safe.t
val make : ?type_:string -> path:string -> unit -> t
val path : t -> string

Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath

val type_ : t -> string option

Type for Host_path Volume Defaults to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath

module Object : Object.S with type value := t