Skip to content

Commit 59076cd

Browse files
authored
Merge pull request #46682 from andresnava/wedsFixes
Clarifications
2 parents 4a132f7 + e0b63dd commit 59076cd

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

articles/aks/azure-disks-dynamic-pv.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ This article assumes that you have an existing AKS cluster. If you need an AKS c
2424

2525
You also need the Azure CLI version 2.0.59 or later installed and configured. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI][install-azure-cli].
2626

27-
## Built in storage classes
27+
## Built-in storage classes
2828

2929
A storage class is used to define how a unit of storage is dynamically created with a persistent volume. For more information on Kubernetes storage classes, see [Kubernetes Storage Classes][kubernetes-storage-classes].
3030

3131
Each AKS cluster includes two pre-created storage classes, both configured to work with Azure disks:
3232

3333
* The *default* storage class provisions a standard Azure disk.
34-
* Standard storage is backed by HDDs, and delivers cost-effective storage while still being performant. Standard disks are ideal for a cost effective dev and test workload.
34+
* Standard storage is backed by HDDs and delivers cost-effective storage while still being performant. Standard disks are ideal for a cost-effective dev and test workload.
3535
* The *managed-premium* storage class provisions a premium Azure disk.
3636
* Premium disks are backed by SSD-based high-performance, low-latency disk. Perfect for VMs running production workload. If the AKS nodes in your cluster use premium storage, select the *managed-premium* class.
3737

articles/aks/use-multiple-node-pools.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The following limitations apply when you create and manage AKS clusters that sup
3737
To get started, create an AKS cluster with a single node pool. The following example uses the [az group create][az-group-create] command to create a resource group named *myResourceGroup* in the *eastus* region. An AKS cluster named *myAKSCluster* is then created using the [az aks create][az-aks-create] command. A *--kubernetes-version* of *1.15.7* is used to show how to update a node pool in a following step. You can specify any [supported Kubernetes version][supported-versions].
3838

3939
> [!NOTE]
40-
> The *Basic* load balancer SKU is **not supported** when using multiple node pools. By default, AKS clusters are created with the *Standard* load balancer SKU from Azure CLI and Azure portal.
40+
> The *Basic* load balancer SKU is **not supported** when using multiple node pools. By default, AKS clusters are created with the *Standard* load balancer SKU from the Azure CLI and Azure portal.
4141
4242
```azurecli-interactive
4343
# Create a resource group in East US
@@ -416,7 +416,7 @@ The Kubernetes scheduler can use taints and tolerations to restrict what workloa
416416

417417
For more information on how to use advanced Kubernetes scheduled features, see [Best practices for advanced scheduler features in AKS][taints-tolerations]
418418

419-
In this example, apply a taint to your GPU-based node using the --node-taints command. Specify the name of your GPU-based node from the output of the previous `kubectl get nodes` command. The taint is applied as a *key:value* and then a scheduling option. The following example uses the *sku=gpu* pair and defines pods otherwise have the *NoSchedule* ability:
419+
In this example, apply a taint to your GPU-based node using the --node-taints command. Specify the name of your GPU-based node from the output of the previous `kubectl get nodes` command. The taint is applied as a *key=value* pair and then a scheduling option. The following example uses the *sku=gpu* pair and defines pods otherwise have the *NoSchedule* ability:
420420

421421
```console
422422
az aks nodepool add --node-taints aks-gpunodepool-28993262-vmss000000 sku=gpu:NoSchedule
@@ -476,7 +476,7 @@ Events:
476476
Normal Started 4m40s kubelet, aks-gpunodepool-28993262-vmss000000 Started container
477477
```
478478

479-
Only pods that have this taint applied can be scheduled on nodes in *gpunodepool*. Any other pod would be scheduled in the *nodepool1* node pool. If you create additional node pools, you can use additional taints and tolerations to limit what pods can be scheduled on those node resources.
479+
Only pods that have this toleration applied can be scheduled on nodes in *gpunodepool*. Any other pod would be scheduled in the *nodepool1* node pool. If you create additional node pools, you can use additional taints and tolerations to limit what pods can be scheduled on those node resources.
480480

481481
## Specify a taint, label, or tag for a node pool
482482

articles/terraform/terraform-create-k8s-cluster-with-tf-and-aks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ In this tutorial, you learn how to do the following tasks:
2323

2424
- **Configure Terraform**: Follow the directions in the article, [Terraform and configure access to Azure](terraform-install-configure.md)
2525

26-
- **Azure service principal**: Follow the directions in the section of the **Create the service principal** section in the article, [Create an Azure service principal with Azure CLI](/cli/azure/create-an-azure-service-principal-azure-cli?view=azure-cli-latest). Take note of the values for the appId, displayName, password, and tenant.
26+
- **Azure service principal**: Follow the directions in the **Create the service principal** section in the article, [Create an Azure service principal with Azure CLI](/cli/azure/create-an-azure-service-principal-azure-cli?view=azure-cli-latest). Take note of the values for the appId, displayName, password, and tenant.
2727

2828
## Create the directory structure
2929

@@ -298,7 +298,7 @@ In this section, you see how to do the following tasks:
298298

299299
## Create the Kubernetes cluster
300300

301-
In this section, you see how to use the `terraform init` command to create the resources defined the configuration files you created in the previous sections.
301+
In this section, you see how to use the `terraform init` command to create the resources defined in the configuration files you created in the previous sections.
302302

303303
1. In Cloud Shell, initialize Terraform. Replace the placeholders with appropriate values for your environment.
304304

0 commit comments

Comments
 (0)