Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 31d505e

Browse files
authored
Correcting statement about master node in AKS cluster
1 parent 73b84ba commit 31d505e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/big-data-cluster/deploy-on-aks.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to configure Azure Kubernetes Service (AKS) for SQL Serve
44
author: rothja
55
ms.author: jroth
66
manager: craigg
7-
ms.date: 11/15/2018
7+
ms.date: 11/27/2018
88
ms.topic: conceptual
99
ms.prod: sql
1010
---
@@ -67,7 +67,7 @@ An Azure resource group is a logical group in which Azure resources are deployed
6767

6868
## Create a Kubernetes cluster
6969

70-
1. Create a Kubernetes cluster in AKS with the [az aks create](https://docs.microsoft.com/cli/azure/aks) command. The following example creates a Kubernetes cluster named *kubcluster* with one Linux master node and two Linux agent nodes. Make sure you create the AKS cluster in the same resource group that you used in the previous sections.
70+
1. Create a Kubernetes cluster in AKS with the [az aks create](https://docs.microsoft.com/cli/azure/aks) command. The following example creates a Kubernetes cluster named *kubcluster* with three Linux agent nodes. Make sure you create the AKS cluster in the same resource group that you used in the previous sections.
7171

7272
```bash
7373
az aks create --name kubcluster \
@@ -78,9 +78,9 @@ An Azure resource group is a logical group in which Azure resources are deployed
7878
--kubernetes-version 1.10.8
7979
```
8080

81-
You can increase or decrease the number of Kubernetes agent nodes by changing the `--node-count <n>` where `<n>` is the number of agent nodes you want to have, which it does not include the master Kubernetes node. So in the example above, there will be **4** VMs of size **Standard_L4s** used for the AKS cluster: **1** for the master and **3** for the agent nodes.
81+
You can increase or decrease the number of Kubernetes agent nodes by changing the `--node-count <n>` where `<n>` is the number of agent nodes you want to use. This does not include the master Kubernetes node, which is managed behind the scenes by AKS. So in the example above, there are **3** VMs of size **Standard_L4s** used for the agent nodes of your AKS cluster.
8282

83-
After several minutes, the command completes and returns JSON-formatted information about the cluster.
83+
After several minutes, the command completes and returns JSON-formatted information about the cluster.
8484

8585
1. Save the JSON output from the previous command for later use.
8686

0 commit comments

Comments
 (0)