mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-07 00:48:01 +01:00
36 lines
960 B
Plaintext
36 lines
960 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * backup_and_restore/application_backup_and_restore/troubleshooting.adoc
|
|
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="restic-timeout_{context}"]
|
|
= Restic timeout
|
|
|
|
`timeout` defines the Restic timeout. The default value is `1h`.
|
|
|
|
Use the Restic `timeout` for the following scenarios:
|
|
|
|
* For Restic backups with total PV data usage that is greater than 500GB.
|
|
* If backups are timing out with the following error:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
level=error msg="Error backing up item" backup=velero/monitoring error="timed out waiting for all PodVolumeBackups to complete"
|
|
----
|
|
|
|
.Procedure
|
|
* Edit the values in the `spec.configuration.restic.timeout` block of the `DataProtectionApplication` CR manifest, as in the following example:
|
|
+
|
|
[source,yaml]
|
|
----
|
|
apiVersion: oadp.openshift.io/v1alpha1
|
|
kind: DataProtectionApplication
|
|
metadata:
|
|
name: <dpa_name>
|
|
spec:
|
|
configuration:
|
|
restic:
|
|
timeout: 1h
|
|
# ...
|
|
----
|