UNPKG

kubernetes-models

Version:
10 lines (9 loc) 585 B
import { Model, setSchema } from "@kubernetes-models/base"; import { addSchema } from "../_schemas/IoK8sApiCoreV1CinderVolumeSource.mjs"; /** * Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling. */ export class CinderVolumeSource extends Model { } setSchema(CinderVolumeSource, "io.k8s.api.core.v1.CinderVolumeSource", addSchema); export { CinderVolumeSource as IoK8sApiCoreV1CinderVolumeSource };