Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
fix(azure): use regular storage instead of premium
Browse files Browse the repository at this point in the history
premium storage does not support block blobs, whereas regular storage does.

Error coming from wal-e:

```
azure.storage._http.HTTPError: Block blobs are not supported.
```
  • Loading branch information
Matthew Fisher committed Jan 10, 2017
1 parent 2dd2e04 commit 2817dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quickstart/provider/azure-acs/install-azure-acs.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ $ helm repo add deis https://charts.deis.com/workflow
It is recommended to use a dedicated storage account for the operational aspects of Workflow, which includes storing slug and container images, database backups, and disaster recovery. This storage account is passed as parameters during the `helm install` command in the next step. Replace the `SA_NAME` variable with a unique name for your storage account and execute these commands.
```
$ export SA_NAME=YourGlobalUniqueName
$ az storage account create -n $SA_NAME -l $DC_LOCATION -g $RG_NAME --sku Premium_LRS
$ az storage account create -n $SA_NAME -l $DC_LOCATION -g $RG_NAME --sku Standard_LRS
$ export SA_KEY=`az storage account keys list -n $SA_NAME -g RG_NAME --query keys[0].value --output tsv`
```
Expand Down

0 comments on commit 2817dbc

Please sign in to comment.