openstack-manuals/doc/config-reference/block-storage/backup/swift-backup-driver.xml
Shilla Saebi d359f8cc42 changed doc to follow conventions
capitalization of service name not necessary
removed capitalization of swift

Change-Id: Id277329c130a9f50eeb1be74c68048f413f42e6c
2015-05-07 01:54:39 -04:00

37 lines
1.8 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 the swift back end performs a volume
backup to an 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>To enable the swift backup driver for 1.0 or 2.0 authentication version,
specify <literal>1</literal> or <literal>2</literal> correspondingly. For example:</para>
<programlisting>backup_swift_auth_version = 2</programlisting>
<para>In addition, the 2.0 authentication system requires
<parameter>backup_swift_tenant</parameter> setting:</para>
<programlisting>backup_swift_tenant = &lt;None&gt;</programlisting>
<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_auth_version = 1
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>