Updated 10. Setting the solution up in AKS (Azure Kubernetes Service) (markdown)

Cesar De la Torre 2018-05-17 13:19:21 -07:00
parent 90360762ca
commit 730316df77

@ -51,5 +51,24 @@ For example just by running the following cli script it would create to create t
**Important**: Note the parameter "-createAcr true". If you are creating the K8s cluster but you want to re-use and existing ACR, say "-createAcr false". **Important**: Note the parameter "-createAcr true". If you are creating the K8s cluster but you want to re-use and existing ACR, say "-createAcr false".
### Step-by-step
* Authenticate in Azure using the CLI
Before running the eShopOnContainers **gen-k8s-env-aks.ps1** script or manually creating the clusters, you first need to authenticate from a PowerShell window, with:
`az login`
Follow the procedure.
* Select the right Azure subscription to use
It is very common to have access to multiple Azure subscriptions.
You can list your available subscriptions with:
`az account list -o table`
And check which subscription is being used by default.
If you need to change it, do it with this command:
`az account set --subscription "YOUR-SUBSCRIPTION-NAME"`