From b0e344d1022e68e88c96e750f42ff2c0994dc800 Mon Sep 17 00:00:00 2001 From: George Raven Date: Thu, 8 Feb 2024 22:22:44 +0000 Subject: [PATCH] Added default operation timeout override Signed-off-by: George Raven --- charts/velero/templates/deployment.yaml | 3 +++ charts/velero/values.yaml | 2 ++ 2 files changed, 5 insertions(+) diff --git a/charts/velero/templates/deployment.yaml b/charts/velero/templates/deployment.yaml index 155cfbd2..4c0c2bf2 100644 --- a/charts/velero/templates/deployment.yaml +++ b/charts/velero/templates/deployment.yaml @@ -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 }} diff --git a/charts/velero/values.yaml b/charts/velero/values.yaml index b77dac59..78362b5d 100644 --- a/charts/velero/values.yaml +++ b/charts/velero/values.yaml @@ -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.