Skip to content

Commit 64ef5b1

Browse files
authored
Merge pull request #546 from DreamingRaven/feature-default-item-operation-timeout
[velero] Added default operation timeout override
2 parents 01ae2d9 + d4b55e0 commit 64ef5b1

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

charts/velero/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ appVersion: 1.13.0
33
kubeVersion: ">=1.16.0-0"
44
description: A Helm chart for velero
55
name: velero
6-
version: 5.3.0
6+
version: 5.4.0
77
home: https://github.com/vmware-tanzu/velero
88
icon: https://cdn-images-1.medium.com/max/1600/1*-9mb3AKnKdcL_QD3CMnthQ.png
99
sources:

charts/velero/templates/deployment.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,9 @@ spec:
108108
{{- with .defaultBackupTTL }}
109109
- --default-backup-ttl={{ . }}
110110
{{- end }}
111+
{{- with .defaultItemOperationTimeout }}
112+
- --default-item-operation-timeout={{ . }}
113+
{{- end }}
111114
{{- with .defaultVolumeSnapshotLocations }}
112115
- --default-volume-snapshot-locations={{ . }}
113116
{{- end }}

charts/velero/values.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,8 @@ configuration:
405405
clientQPS:
406406
# Name of the default backup storage location. Default: default
407407
defaultBackupStorageLocation:
408+
# The default duration any single item operation can take before timing out, especially important for large volume schedules. Default 4h
409+
defaultItemOperationTimeout:
408410
# How long to wait by default before backups can be garbage collected. Default: 72h
409411
defaultBackupTTL:
410412
# Name of the default volume snapshot location.

0 commit comments

Comments
 (0)