Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 816 Bytes

File metadata and controls

22 lines (16 loc) · 816 Bytes

Kubevirt::V1PersistentVolumeClaimVolumeSource

Properties

Name Type Description Notes
claim_name String claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims [default to '']
hotpluggable Boolean Hotpluggable indicates whether the volume can be hotplugged and hotunplugged. [optional]
read_only Boolean readOnly Will force the ReadOnly setting in VolumeMounts. Default false. [optional]

Example

require 'kubevirt'

instance = Kubevirt::V1PersistentVolumeClaimVolumeSource.new(
  claim_name: null,
  hotpluggable: null,
  read_only: null
)