Skip to content

Commit

Permalink
Merge pull request #546 from DreamingRaven/feature-default-item-opera…
Browse files Browse the repository at this point in the history
…tion-timeout

[velero] Added default operation timeout override
  • Loading branch information
qiuming-best committed Feb 21, 2024
2 parents 01ae2d9 + d4b55e0 commit 64ef5b1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/velero/Chart.yaml
Expand Up @@ -3,7 +3,7 @@ appVersion: 1.13.0
kubeVersion: ">=1.16.0-0"
description: A Helm chart for velero
name: velero
version: 5.3.0
version: 5.4.0
home: https://github.com/vmware-tanzu/velero
icon: https://cdn-images-1.medium.com/max/1600/1*-9mb3AKnKdcL_QD3CMnthQ.png
sources:
Expand Down
3 changes: 3 additions & 0 deletions charts/velero/templates/deployment.yaml
Expand Up @@ -108,6 +108,9 @@ spec:
{{- with .defaultBackupTTL }}
- --default-backup-ttl={{ . }}
{{- end }}
{{- with .defaultItemOperationTimeout }}
- --default-item-operation-timeout={{ . }}
{{- end }}
{{- with .defaultVolumeSnapshotLocations }}
- --default-volume-snapshot-locations={{ . }}
{{- end }}
Expand Down
2 changes: 2 additions & 0 deletions charts/velero/values.yaml
Expand Up @@ -405,6 +405,8 @@ configuration:
clientQPS:
# Name of the default backup storage location. Default: default
defaultBackupStorageLocation:
# The default duration any single item operation can take before timing out, especially important for large volume schedules. Default 4h
defaultItemOperationTimeout:
# How long to wait by default before backups can be garbage collected. Default: 72h
defaultBackupTTL:
# Name of the default volume snapshot location.
Expand Down

0 comments on commit 64ef5b1

Please sign in to comment.