Skip to content

Latest commit

 

History

History
64 lines (50 loc) · 1.74 KB

wf_restore_app_backup.adoc

File metadata and controls

64 lines (50 loc) · 1.74 KB
sidebar permalink keywords summary
sidebar
workflows/wf_restore_app_backup.html
You can restore an application by creating a new app from a backup.

Restore an app from a backup

You can restore an application by creating a new app from a backup.

1. Select the app to restore

Perform the workflow List the apps and select application you want to clone. Several of the resource values are needed for the REST call used to restore the app.

2. Select the backup to use

Perform the workflow List the backups and select backup you want to use.

3. Restore the app

Perform the following REST API call. You must provide the ID for either a backup (as shown below) or snapshot.

HTTP method Path

PUT

/accounts/{account_id}/k8s/v2/apps/{app_id}

Additional input parameters

In addition to the parameters common with all REST API calls, the following parameters are also used in the curl examples for this step.

Parameter Type Required Description

JSON

Body

Yes

Provides the parameters for the cloned app. See the example below.

JSON input example
{
  "type": "application/astra-app",
  "version": "2.0",
  "backupID": "e24515bd-a28e-4b28-b832-f3c74dbf32fb"
}
Curl example: Restore an app in place from a backup
curl --location -i --request PUT 'https://astra.netapp.io/accounts/<ACCOUNT_ID>/k8s/v2/apps/<APP_ID>' --header 'Content-Type: application/astra-app+json' --header '*/*' --header 'ForceUpdate: true' --header 'Authorization: Bearer <API_TOKEN>' --data @JSONinput