vmware-tanzu / velero

Backup and migrate Kubernetes applications and their persistent volumes
https://velero.io
Apache License 2.0
8.61k stars 1.39k forks source link

RFE: Extend Volume Policy criteria to include label selector #8256

Open shubham-pampattiwar opened 4 hours ago

shubham-pampattiwar commented 4 hours ago

Describe the problem/challenge you have

Currently, Volume Policies in Velero support basic criteria for managing volumes during backup operations. However, the lack of a label selector feature limits flexibility in applying policies to specific sets of volumes. By extending the Volume Policy criteria to include label selectors, users can more effectively manage their storage resources based on custom labeling strategies, enhancing automation and operational efficiency.

Describe the solution you'd like

Extend the Volume Policy criteria definition to support label selectors.

Anything else you would like to add:

Environment:

Vote on this issue!

This is an invitation to the Velero community to vote on issues, you can see the project's top voted issues listed here.
Use the "reaction smiley face" up to the right of this comment to vote.

sseago commented 3 hours ago

We've seen several customer requests for this -- they tend to be things like "I don't want to back up the content of my database volumes because we have hooks to do a db dump to a separate volume and we want to back up that volume but not the live DB volume" -- this isn't easily accomplished with the current selection criteria around capacity, volume type, etc. since there's a good chance the volume wanted to back up and the one not wanted have the same type, provisioner, size, etc. But if they can label the volumes "do-not-backup" or whatever and then create a volume policy with a label selector matching that label with the skip action, they could accomplish this easily.