Implement a basic backup-volume-to-swift service

Implements: blueprint volume-backups

This patch adds the new service, api and basic unit tests

Change-Id: Ibe02c680c5e9201d208c92e796e86ad76b4b54b3
This commit is contained in:
Duncan Thomas
2013-02-20 18:07:55 +00:00
parent 17753db4d0
commit f50c8cbed1
30 changed files with 3199 additions and 3 deletions

View File

@@ -537,3 +537,11 @@ class GlanceMetadataExists(Invalid):
class ImageCopyFailure(Invalid):
message = _("Failed to copy image to volume")
class BackupNotFound(NotFound):
message = _("Backup %(backup_id)s could not be found.")
class InvalidBackup(Invalid):
message = _("Invalid backup: %(reason)s")