Skip to content

Commit a5d71e2

Browse files
author
David Tesar
authored
docs(Azure): Fix storage key and add note
Fixed storage key query - slight modification to JSON output from az cli Added important note for people to not try to add Premium LRS sku
1 parent c65fae6 commit a5d71e2

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,18 @@ It is recommended to use a dedicated storage account for the operational aspects
3333
```
3434
$ export SA_NAME=YourGlobalUniqueName
3535
$ az storage account create -n $SA_NAME -l $DC_LOCATION -g $RG_NAME --sku Standard_LRS
36-
$ export SA_KEY=`az storage account keys list -n $SA_NAME -g RG_NAME --query keys[0].value --output tsv`
36+
$ export SA_KEY=`az storage account keys list -n $SA_NAME -g $RG_NAME --query [0].value --output tsv`
3737
3838
```
3939

40+
> Note: Premium Storage skus are not supported yet due to [lack of block blob storage support](https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/using-blob-service-operations-with-azure-premium-storage) required for the deis database to function.
41+
4042
## Install Deis Workflow
4143

4244
Now that Helm is installed and the repository has been added, install Workflow by running:
4345

4446
```
45-
$ helm install deis/workflow --namespace=deis --set controller.k8s_api_verify_tls=false,global.storage=azure,azure.accountname=$SA_NAME,azure.accountkey=$SA_KEY,azure.registry_container=registry,azure.database_container=database,azure.builder_container=builder
47+
$ helm install deis/workflow --namespace=deis --set global.storage=azure,azure.accountname=$SA_NAME,azure.accountkey=$SA_KEY,azure.registry_container=registry,azure.database_container=database,azure.builder_container=builder
4648
```
4749

4850
Helm will install a variety of Kubernetes resources in the `deis` namespace.

0 commit comments

Comments
 (0)