Skip to content

Commit 02e9437

Browse files
author
Matthew Fisher
committed
fix(quickstart): prepend Azure envvars with AZURE_
1 parent c7e6665 commit 02e9437

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ $ helm repo add deis https://charts.deis.com/workflow
2929

3030
## Create New Azure Storage Account
3131

32-
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.
32+
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 `AZURE_SA_NAME` variable with a unique name for your storage account and execute these commands.
3333
```
34-
$ export SA_NAME=YourGlobalUniqueName
35-
$ 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 [0].value --output tsv`
34+
$ export AZURE_SA_NAME=YourGlobalUniqueName
35+
$ az storage account create -n $AZURE_SA_NAME -l $AZURE_DC_LOCATION -g $AZURE_RG_NAME --sku Standard_LRS
36+
$ export AZURE_SA_KEY=`az storage account keys list -n $AZURE_SA_NAME -g $AZURE_RG_NAME --query [0].value --output tsv`
3737
3838
```
3939

@@ -44,7 +44,7 @@ $ export SA_KEY=`az storage account keys list -n $SA_NAME -g $RG_NAME --query [0
4444
Now that Helm is installed and the repository has been added, install Workflow by running:
4545

4646
```
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
47+
$ helm install deis/workflow --namespace=deis --set global.storage=azure,azure.accountname=$AZURE_SA_NAME,azure.accountkey=$AZURE_SA_KEY,azure.registry_container=registry,azure.database_container=database,azure.builder_container=builder
4848
```
4949

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

0 commit comments

Comments
 (0)