Interface IMount

interface IMount {
    content?: string;
    hostPath?: string;
    mountPath: string;
    name?: string;
    type: "bind" | "volume" | "file";
}

Properties

content?: string
hostPath?: string
mountPath: string
name?: string
type: "bind" | "volume" | "file"

Generated using TypeDoc