openstack-manuals/doc/config-reference/block-storage/backup/swift-backup-driver.xml
Gauvain Pocentek 874a358eb9 Fix the cinder backup drivers path
Correct the values of backup_driver in the config reference.

Also add some spaces to make samples more easily readable.

Change-Id: I6f5d9fd40355c3a45b93cec2946257d505aef73f
Partial-Bug: #1309137
2014-04-17 21:12:36 +02:00

28 lines
1.3 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 back-end performs a volume
backup to a Swift object storage system.</para>
<para>To enable the Swift backup driver, include the following
option in the <filename>cinder.conf</filename>
file:</para>
<programlisting>backup_driver = cinder.backup.drivers.swift</programlisting>
<para>The following configuration options are available for
the Swift back-end backup driver.</para>
<xi:include
href="../../../common/tables/cinder-backups_swift.xml"/>
<para>This example shows the default options for the Swift
back-end 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>