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
{{ message }}
This repository has been archived by the owner on Jun 18, 2022. It is now read-only.
func (d*Driver) ListBackup(destURLstring, optsmap[string]string) (map[string]map[string]string, error) {
//EBS doesn't support ListBackup(), return empty to satisfy callerreturnmap[string]map[string]string{}, nil
}
So, if I want to restore a volume named "vol1" from a backup, how would I do this? I need a list of backups; their dates and URLs so I can choose the right restore point.
In EBS, the backups are really just the snapshots. So the list of snapshots associated with a volume is also the list of backups ... snapshots[ name ].DriverInfo.EBSSnapshotID is the backup (ebs://xxx) and CreatedTime was the time created.
I think this information should be returned with the ebs:// tacked onto it, so that the EBS driver works like the others, and so someone can find appropriate backups for doing a restore.
Or, am I on the wrong track?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I see the code in the ebs driver:
So, if I want to restore a volume named "vol1" from a backup, how would I do this? I need a list of backups; their dates and URLs so I can choose the right restore point.
In EBS, the backups are really just the snapshots. So the list of snapshots associated with a volume is also the list of backups ... snapshots[ name ].DriverInfo.EBSSnapshotID is the backup (ebs://xxx) and CreatedTime was the time created.
I think this information should be returned with the ebs:// tacked onto it, so that the EBS driver works like the others, and so someone can find appropriate backups for doing a restore.
Or, am I on the wrong track?
The text was updated successfully, but these errors were encountered: