Skip to content

Commit

Permalink
Merge pull request deis#785 from bacongobbler/streamline-azure-quicks…
Browse files Browse the repository at this point in the history
…tart

ref(azure/boot): export AZURE_DNS_PREFIX and use $HOME
  • Loading branch information
Matthew Fisher authored Apr 27, 2017
2 parents c1201e3 + bd0b1d9 commit 11fae66
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/quickstart/provider/azure-acs/boot.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,13 @@ Execute the command to deploy the cluster. The `dns-prefix` and `ssh-key-value`

```
$ export AZURE_SERVICE_NAME=myacs
$ export AZURE_DNS_PREFIX=mydnsprefix
$ az acs create --resource-group="${AZURE_RG_NAME}" --location="${AZURE_DC_LOCATION}" \
--orchestrator-type=kubernetes --master-count=1 --agent-count=1 \
--agent-vm-size="Standard_D2_v2" \
--admin-username="k8sadmin" \
--name="${AZURE_SERVICE_NAME}" --dns-prefix="mydnsprefix" \
--ssh-key-value @/home/myusername/.ssh/id_rsa.pub
--name="${AZURE_SERVICE_NAME}" --dns-prefix="${AZURE_DNS_PREFIX}" \
--ssh-key-value @$HOME/.ssh/id_rsa.pub
```

> Note: When `az acs create` starts, the provisioning process runs in the background by first creating a service principal named ${AZURE_SERVICE_NAME} assigned appropriate permissions. After a few minutes the `az` command should return with information about the deployment created as shown below.
Expand Down

0 comments on commit 11fae66

Please sign in to comment.