blob: 28773826f4f42c9d83f6ed02266182bc1a5eac06 [file] [log] [blame]
export interface KubernetesVolume {
name: string;
persistentVolumeClaim?: {
claimName: string;
};
configMap?: {
name: string;
};
secret?: {
secretName: string;
};
}
export interface VolumeMount {
name: string;
mountPath: string;
readOnly?: boolean;
}
/**
* Represents a row of data containing information about PVC (Persistent Volume Claim) storage.
*/
export interface DfRow {
'Pvc Name': string;
'Size': string;
'Used': string;
'Available': string;
'Use%': string;
}