@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
32 lines • 623 B
TypeScript
export type DeployEnvironmentVolume = {
/**
* Volume name
*/
name: string;
/**
* Kubernetes node name
*/
node: string;
/**
* Volume size
* @example "5Gi", "500Mi"
*/
size: string;
/**
* Kubernetes Storage Class
*/
storageClass: string;
/**
* Map directory on the host server to this volume
*/
hostPath?: string;
/**
* Type
*/
type?: string;
/**
* Location of mapped directory inside the container into this volume
*/
mountPath: string;
};
//# sourceMappingURL=DeployEnvironmentVolume.d.ts.map