Skip to content

Commit b0e344d

Browse files
committed
Added default operation timeout override
Signed-off-by: George Raven <[email protected]>
1 parent 01ae2d9 commit b0e344d

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

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)