7160: Clarify exampleAccountName -> exampleStorageAccountName
authorTom Clegg <tom@curoverse.com>
Tue, 27 Oct 2015 14:37:33 +0000 (10:37 -0400)
committerTom Clegg <tom@curoverse.com>
Tue, 27 Oct 2015 14:37:33 +0000 (10:37 -0400)
doc/install/configure-azure-blob-storage.html.textile.liquid

index 92deea36834f58a61e14665dc5e00e829c09e16a..e365d742f177f1b3ceeecb343a3a6925fe70d6e5 100644 (file)
@@ -16,14 +16,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 +34,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 +48,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>