mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-08-19 13:46:08 +00:00
* Add changelog for v1.4.0 Signed-off-by: Nolan Brubaker <brubakern@vmware.com> * Add v1.4.0 docs Signed-off-by: Nolan Brubaker <brubakern@vmware.com> * Fix broken CI, links, and date Signed-off-by: Nolan Brubaker <brubakern@vmware.com> * Fix duplicate and missing TOC info Signed-off-by: Nolan Brubaker <brubakern@vmware.com>
10 lines
349 B
Markdown
10 lines
349 B
Markdown
# Backup Reference
|
|
|
|
## Exclude Specific Items from Backup
|
|
|
|
It is possible to exclude individual items from being backed up, even if they match the resource/namespace/label selectors defined in the backup spec. To do this, label the item as follows:
|
|
|
|
```bash
|
|
kubectl label -n <ITEM_NAMESPACE> <RESOURCE>/<NAME> velero.io/exclude-from-backup=true
|
|
```
|