You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue proposes passing a SINGLE PVC annotation to the CSI Driver as part of CreateVolumeRequest.Parameters to allow CSI drivers to tag volumes with custom tags provided at the PVC level.
When creating a PVC, a user can specify tags to be attached to their volumes (if the driver supports it) by creating an annotation: csi/additional-volume-tags, which is a comma separated list of key-value pairs.
Volume tags will be appended to CreateVolumeRequest.Parameters if and only if the annotation is set to true. CSI drivers are free to ignore this annotation if they don't support tagging.
I'm willing to work on a PR if the community thinks this change makes sense.
The text was updated successfully, but these errors were encountered:
There's a similar related issue here: #86
This issue proposes passing a SINGLE PVC annotation to the CSI Driver as part of
CreateVolumeRequest.Parameters
to allow CSI drivers to tag volumes with custom tags provided at the PVC level.When creating a PVC, a user can specify tags to be attached to their volumes (if the driver supports it) by creating an annotation:
csi/additional-volume-tags
, which is a comma separated list of key-value pairs.The feature can be gated by an OPTIONAL annotation in the StorageClass, which defaults to
false
.Volume tags will be appended to
CreateVolumeRequest.Parameters
if and only if the annotation is set to true. CSI drivers are free to ignore this annotation if they don't support tagging.I'm willing to work on a PR if the community thinks this change makes sense.
The text was updated successfully, but these errors were encountered: