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

Commit

Permalink
docs(Azure): Fix storage key and add note
Browse files Browse the repository at this point in the history
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
  • Loading branch information
dtzar authored Jan 26, 2017
1 parent c65fae6 commit a5d71e2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/quickstart/provider/azure-acs/install-azure-acs.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,18 @@ It is recommended to use a dedicated storage account for the operational aspects
```
$ export SA_NAME=YourGlobalUniqueName
$ 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`
$ export SA_KEY=`az storage account keys list -n $SA_NAME -g $RG_NAME --query [0].value --output tsv`
```

> 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.
## Install Deis Workflow

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

```
$ 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
$ 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
```

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

0 comments on commit a5d71e2

Please sign in to comment.