Skip to content

Commit 2817dbc

Browse files
author
Matthew Fisher
committed
fix(azure): use regular storage instead of premium
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. ```
1 parent 2dd2e04 commit 2817dbc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/quickstart/provider/azure-acs/install-azure-acs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ $ helm repo add deis https://charts.deis.com/workflow
3232
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.
3333
```
3434
$ export SA_NAME=YourGlobalUniqueName
35-
$ az storage account create -n $SA_NAME -l $DC_LOCATION -g $RG_NAME --sku Premium_LRS
35+
$ az storage account create -n $SA_NAME -l $DC_LOCATION -g $RG_NAME --sku Standard_LRS
3636
$ export SA_KEY=`az storage account keys list -n $SA_NAME -g RG_NAME --query keys[0].value --output tsv`
3737
3838
```

0 commit comments

Comments
 (0)