kubernetes-models
Version:
12 lines (11 loc) • 742 B
JavaScript
import { Model, setSchema } from "@kubernetes-models/base";
import { addSchema } from "../_schemas/IoK8sApiCoreV1GCEPersistentDiskVolumeSource.mjs";
/**
* Represents a Persistent Disk resource in Google Compute Engine.
*
* A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.
*/
export class GCEPersistentDiskVolumeSource extends Model {
}
setSchema(GCEPersistentDiskVolumeSource, "io.k8s.api.core.v1.GCEPersistentDiskVolumeSource", addSchema);
export { GCEPersistentDiskVolumeSource as IoK8sApiCoreV1GCEPersistentDiskVolumeSource };