X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ef11ca4b86beb111acb6a99d4eadbc7b0a0d27ef..49645de7263ac010f25af3d79e177c4962e59578:/doc/install/configure-azure-blob-storage.html.textile.liquid diff --git a/doc/install/configure-azure-blob-storage.html.textile.liquid b/doc/install/configure-azure-blob-storage.html.textile.liquid index 92deea3683..e365d742f1 100644 --- a/doc/install/configure-azure-blob-storage.html.textile.liquid +++ b/doc/install/configure-azure-blob-storage.html.textile.liquid @@ -16,14 +16,14 @@ Using the Azure web portal or command line tool, create or choose a storage acco
~$ azure config mode arm
 ~$ azure login
 ~$ azure group create exampleGroupName eastus
-~$ azure storage account create --type LRS --location eastus --resource-group exampleGroupName exampleAccountName
-~$ azure storage account keys list --resource-group exampleGroupName exampleAccountName
+~$ azure storage account create --type LRS --location eastus --resource-group exampleGroupName exampleStorageAccountName
+~$ azure storage account keys list --resource-group exampleGroupName exampleStorageAccountName
 info:    Executing command storage account keys list
 + Getting storage account keys
 data:    Primary: zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz==
 data:    Secondary: yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy==
 info:    storage account keys list command OK
-~$ AZURE_STORAGE_ACCOUNT="exampleAccountName" \
+~$ AZURE_STORAGE_ACCOUNT="exampleStorageAccountName" \
 AZURE_STORAGE_ACCESS_KEY="zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz==" \
 azure storage container create exampleContainerName
 
@@ -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. -
~$ sudo sh -c 'cat >/etc/sv/keepstore/exampleAccountName.key <<EOF'
+
~$ sudo sh -c 'cat >/etc/sv/keepstore/exampleStorageAccountName.key <<EOF'
 zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz==
 EOF
-~$ sudo chmod 0400 /etc/sv/keepstore/exampleAccountName.key
+~$ sudo chmod 0400 /etc/sv/keepstore/exampleStorageAccountName.key
 
@@ -48,8 +48,8 @@ In your keepstore startup script, instead of specifying a local storage using @- exec 2>&1 exec keepstore \ - -azure-storage-account-key-file /etc/sv/keepstore/exampleAccountName.key \ - -azure-storage-account-name exampleAccountName \ + -azure-storage-account-key-file /etc/sv/keepstore/exampleStorageAccountName.key \ + -azure-storage-account-name exampleStorageAccountName \ -azure-storage-container-volume exampleContainerName