openstack-manuals/doc/config-reference/block-storage/backup/swift-backup-driver.xml
Ronen Kat e56cfaf5d7 Configuration reference docs for Cinder backup.
Documentation for configuration cinder-backup service
including documentation for the drivers in Havana:
Ceph, IBM TSM and Swift.
Driver documentation is based on the driver's code and comments.

Closes-Bug: 1205359

Change-Id: I4a38b779193db35ae95332744ed52f931a4ecee4
2013-09-22 14:26:48 +02:00

35 lines
1.2 KiB
XML

<section xml:id="swift-backup-driver"
xmlns="http://docbook.org/ns/docbook"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="5.0">
<title>Swift Backup Driver</title>
<para>The backup driver for Swift backend performs a volume backup to a
Swift object storage system.
</para>
<para>To enable the Swift backup driver, include the following option
in cinder.conf:</para>
<programlisting>
backup_driver=cinder.backup.driver.swift
</programlisting>
<para>The following configuration options are available for the
Swift backend backup driver.
</para>
<xi:include href="../../../common/tables/cinder-backups_swift.xml" />
<para>Here is an example of the default options for the Swift backend
backup driver.
</para>
<programlisting>
backup_swift_url=http://localhost:8080/v1/AUTH
backup_swift_auth=per_user
backup_swift_user=&lt;None&gt;
backup_swift_key=&lt;None&gt;
backup_swift_container=volumebackups
backup_swift_object_size=52428800
backup_swift_retry_attempts=3
backup_swift_retry_backoff=2
backup_compression_algorithm=zlib
</programlisting>
</section>