Merge branch '12737-wb-rails42-upgrade'
[arvados.git] / doc / install / configure-azure-blob-storage.html.textile.liquid
index 92deea36834f58a61e14665dc5e00e829c09e16a..4ab6fcf5fa9bf3de1802a6f5e971ea3b8e746da0 100644 (file)
@@ -3,6 +3,11 @@ layout: default
 navsection: installguide
 title: Configure Azure Blob storage
 ...
+{% comment %}
+Copyright (C) The Arvados Authors. All rights reserved.
+
+SPDX-License-Identifier: CC-BY-SA-3.0
+{% endcomment %}
 
 As an alternative to local and network-attached POSIX filesystems, Keepstore can store data in an Azure Storage container.
 
@@ -16,14 +21,14 @@ Using the Azure web portal or command line tool, create or choose a storage acco
 <pre><code>~$ <span class="userinput">azure config mode arm</span>
 ~$ <span class="userinput">azure login</span>
 ~$ <span class="userinput">azure group create exampleGroupName eastus</span>
-~$ <span class="userinput">azure storage account create --type LRS --location eastus --resource-group exampleGroupName exampleAccountName</span>
-~$ <span class="userinput">azure storage account keys list --resource-group exampleGroupName exampleAccountName</span>
+~$ <span class="userinput">azure storage account create --type LRS --location eastus --resource-group exampleGroupName exampleStorageAccountName</span>
+~$ <span class="userinput">azure storage account keys list --resource-group exampleGroupName exampleStorageAccountName</span>
 info:    Executing command storage account keys list
 + Getting storage account keys
 data:    Primary: zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz==
 data:    Secondary: yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy==
 info:    storage account keys list command OK
-~$ <span class="userinput">AZURE_STORAGE_ACCOUNT="exampleAccountName" \
+~$ <span class="userinput">AZURE_STORAGE_ACCOUNT="exampleStorageAccountName" \
 AZURE_STORAGE_ACCESS_KEY="zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz==" \
 azure storage container create exampleContainerName</span>
 </code></pre>
@@ -34,10 +39,10 @@ h2. Configure keepstore
 Copy the primary storage account key to a file where it will be accessible to keepstore at startup time.
 
 <notextile>
-<pre><code>~$ <span class="userinput">sudo sh -c 'cat &gt;/etc/sv/keepstore/exampleAccountName.key &lt;&lt;EOF'
+<pre><code>~$ <span class="userinput">sudo sh -c 'cat &gt;/etc/sv/keepstore/exampleStorageAccountName.key &lt;&lt;EOF'
 zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz==
 EOF</span>
-~$ <span class="userinput">sudo chmod 0400 /etc/sv/keepstore/exampleAccountName.key</span>
+~$ <span class="userinput">sudo chmod 0400 /etc/sv/keepstore/exampleStorageAccountName.key</span>
 </code></pre>
 </notextile>
 
@@ -48,8 +53,8 @@ In your keepstore startup script, instead of specifying a local storage using @-
 
 exec 2&gt;&amp;1
 exec keepstore \
- -azure-storage-account-key-file <span class="userinput">/etc/sv/keepstore/exampleAccountName.key</span> \
- -azure-storage-account-name <span class="userinput">exampleAccountName</span> \
+ -azure-storage-account-key-file <span class="userinput">/etc/sv/keepstore/exampleStorageAccountName.key</span> \
+ -azure-storage-account-name <span class="userinput">exampleStorageAccountName</span> \
  -azure-storage-container-volume <span class="userinput">exampleContainerName</span>
 </code></pre>
 </notextile>