Fix AKS creation command

There is no need in DNS parameter for AKS creation command as gen-k8s-env-aks.ps1 does not have it.
This commit is contained in:
vyunev 2018-05-10 12:01:10 +03:00 committed by GitHub
parent 0693da2052
commit fb7d83f82f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ The k8s directory contains Kubernetes configuration for the eShopOnContainers ap
>```
or using AKS instead of ACS
>```
>./gen-k8s-env-aks -resourceGroupName k8sGroup -location westeurope -registryName k8sregistry -dnsName k8s-dns -serviceName k8s-cluster -createAcr true -nodeCount 3 -nodeVMSize Standard_D2_v2
>./gen-k8s-env-aks -resourceGroupName k8sGroup -location westeurope -registryName k8sregistry -serviceName k8s-cluster -createAcr true -nodeCount 3 -nodeVMSize Standard_D2_v2
>```
* A Docker development environment with `docker` and `docker-compose`.