To All Our Customers,
Based on feedback, we recently noticed that a few of our customers are not taking regular snapshots from the Cloudify Manager.
We can't stress enough the importance of taking regular snapshots. Without recent snapshots, in case the manager is corrupted, you might lose all your deployments’ data and you won't be able to restore the information.
Snapshots can be taken in different ways.
Using CLI:
`cfy snapshots create`
`cfy snapshots download`
Using Web-UI:
System Setup -> Snapshots -> Create
Once the snapshot is created, you can click on the download button to download it.
Using API:
Create snapshot
curl -X PUT --header "Tenant: default_tenant" --header "Content-type: application/json" -d '{"log_level": "DEBUG"}' -u USERNAME:PASSWORD "https://<Manager_IP>/api/v3.1/snapshots/<snapshot_id>" --insecure
Download Snapshot
curl -X GET --header "Tenant: default_tenant" --header "Content-type: application/json" -d '{"log_level": "DEBUG"}' -u USERNAME:PASSWORD "https://<Manager_IP>/api/v3.1/snapshots/<snapshot_id>/archive" --insecure --output "PATH_ON_LOCAL_FS/snapshot.zip"
Comments
0 comments
Please sign in to leave a comment.