You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the problem/challenge you have
[A description of the current limitation/problem/challenge that you are experiencing.]
Currently, whenever I back up some large volume like Nextcloud, the backup invariably times out, as the default item operation timeout is 4h. In the current helm chart there is no way to modify this default, which has AFAIK existed since vmware-tanzu/velero@2aaa85b. Technically you can work around this by specifically defining a backup with a specific item-operation-timeout time, however this does not work for schedules since there is no apparent way to modify this given the current CRDs for backup-storage-location, volume-snapshot-location or schedule.
Describe the solution you'd like
[A clear and concise description of what you want to happen.]
This can be as simple as adding one more to the existing plethora of overrides:
# How long to wait on persistent volumes and namespaces to terminate during a restore before timing out. Default: 10m
terminatingResourceTimeout:
# Bool flag to configure Velero server to move data by default for all snapshots supporting data movement. Default: false
defaultSnapshotMoveData:
# Comma separated list of velero feature flags. default: empty
# features: EnableCSI
features:
# `velero server` default: velero
namespace:
# additional key/value pairs to be used as environment variables such as "AWS_CLUSTER_NAME: 'yourcluster.domain.tld'"
extraEnvVars: {}
# Set true for backup all pod volumes without having to apply annotation on the pod when used file system backup Default: false.
defaultVolumesToFsBackup:
# How often repository maintain is run for repositories by default.
defaultRepoMaintainFrequency:
Anything else you would like to add:
[Miscellaneous information that will assist in solving the issue.]
While it is not necessary for this specific feature I note that the current setup is incredibly verbose, is there no way to define an arbitrary set of options to the server as a list? Or is there some application specific reason it was templated in this way?
Environment:
environment agnostic as of 5.3.0 is simply not templated
The text was updated successfully, but these errors were encountered:
Describe the problem/challenge you have
[A description of the current limitation/problem/challenge that you are experiencing.]
Currently, whenever I back up some large volume like Nextcloud, the backup invariably times out, as the default item operation timeout is 4h. In the current helm chart there is no way to modify this default, which has AFAIK existed since vmware-tanzu/velero@2aaa85b. Technically you can work around this by specifically defining a backup with a specific item-operation-timeout time, however this does not work for schedules since there is no apparent way to modify this given the current CRDs for backup-storage-location, volume-snapshot-location or schedule.
Describe the solution you'd like
[A clear and concise description of what you want to happen.]
This can be as simple as adding one more to the existing plethora of overrides:
helm-charts/charts/velero/templates/deployment.yaml
Lines 86 to 155 in 01ae2d9
And adding a line to the appropriate configuration section:
helm-charts/charts/velero/values.yaml
Lines 389 to 449 in 01ae2d9
Anything else you would like to add:
[Miscellaneous information that will assist in solving the issue.]
While it is not necessary for this specific feature I note that the current setup is incredibly verbose, is there no way to define an arbitrary set of options to the server as a list? Or is there some application specific reason it was templated in this way?
Environment:
environment agnostic as of 5.3.0 is simply not templated
The text was updated successfully, but these errors were encountered: