CSIVolume Source Patch
data class CSIVolumeSourcePatch(val driver: String? = null, val fsType: String? = null, val nodePublishSecretRef: LocalObjectReferencePatch? = null, val readOnly: Boolean? = null, val volumeAttributes: Map<String, String>? = null)
Represents a source location of a volume to mount, managed by an external CSI driver
Properties
Link copied to clipboard
nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed.
Link copied to clipboard
volumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.