You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/azure-disks-dynamic-pv.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,14 +24,14 @@ This article assumes that you have an existing AKS cluster. If you need an AKS c
24
24
25
25
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].
26
26
27
-
## Builtin storage classes
27
+
## Built-in storage classes
28
28
29
29
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].
30
30
31
31
Each AKS cluster includes two pre-created storage classes, both configured to work with Azure disks:
32
32
33
33
* 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 costeffective 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.
35
35
* The *managed-premium* storage class provisions a premium Azure disk.
36
36
* 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.
Copy file name to clipboardExpand all lines: articles/aks/use-multiple-node-pools.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ The following limitations apply when you create and manage AKS clusters that sup
37
37
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].
38
38
39
39
> [!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.
41
41
42
42
```azurecli-interactive
43
43
# Create a resource group in East US
@@ -416,7 +416,7 @@ The Kubernetes scheduler can use taints and tolerations to restrict what workloa
416
416
417
417
For more information on how to use advanced Kubernetes scheduled features, see [Best practices for advanced scheduler features in AKS][taints-tolerations]
418
418
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:
420
420
421
421
```console
422
422
az aks nodepool add --node-taints aks-gpunodepool-28993262-vmss000000 sku=gpu:NoSchedule
@@ -476,7 +476,7 @@ Events:
476
476
Normal Started 4m40s kubelet, aks-gpunodepool-28993262-vmss000000 Started container
477
477
```
478
478
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.
Copy file name to clipboardExpand all lines: articles/terraform/terraform-create-k8s-cluster-with-tf-and-aks.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ In this tutorial, you learn how to do the following tasks:
23
23
24
24
-**Configure Terraform**: Follow the directions in the article, [Terraform and configure access to Azure](terraform-install-configure.md)
25
25
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.
27
27
28
28
## Create the directory structure
29
29
@@ -298,7 +298,7 @@ In this section, you see how to do the following tasks:
298
298
299
299
## Create the Kubernetes cluster
300
300
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 inthe configuration files you created in the previous sections.
302
302
303
303
1. In Cloud Shell, initialize Terraform. Replace the placeholders with appropriate values for your environment.
0 commit comments