mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
33 lines
1.2 KiB
Plaintext
33 lines
1.2 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * backup_and_restore/application_backup_and_restore/backing_up_and_restoring/oadp-backing-up-applications-restic-doc.adoc
|
|
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="oadp-backingup-file-system-backup_{context}"]
|
|
= Backing up applications with File System Backup
|
|
|
|
.Prerequisites
|
|
|
|
* You must install the OpenShift API for Data Protection (OADP) Operator.
|
|
* You must not disable the default `nodeAgent` installation by setting `spec.configuration.nodeAgent.enable` to `false` in the `DataProtectionApplication` CR.
|
|
* You must select Kopia or Restic as the uploader by setting `spec.configuration.nodeAgent.uploaderType` to `kopia` or `restic` in the `DataProtectionApplication` CR.
|
|
* The `DataProtectionApplication` CR must be in a `Ready` state.
|
|
|
|
.Procedure
|
|
|
|
* Create the `Backup` CR, as in the following example:
|
|
+
|
|
[source,yaml]
|
|
----
|
|
apiVersion: velero.io/v1
|
|
kind: Backup
|
|
metadata:
|
|
name: <backup>
|
|
labels:
|
|
velero.io/storage-location: default
|
|
namespace: openshift-adp
|
|
spec:
|
|
defaultVolumesToFsBackup: true <1>
|
|
...
|
|
----
|
|
<1> In OADP version 1.2 and later, add the `defaultVolumesToFsBackup: true` setting within the `spec` block. In OADP version 1.1, add `defaultVolumesToRestic: true`. |