From aa5e7633b0afcd0648cfa88535aa88e412cfc985 Mon Sep 17 00:00:00 2001 From: Kenneth Kilty Date: Tue, 12 Nov 2024 13:44:14 -0500 Subject: [PATCH 1/2] Update workshop.md Small correction --- workshops/advanced-aks/workshop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workshops/advanced-aks/workshop.md b/workshops/advanced-aks/workshop.md index d4835b9..5fea09c 100644 --- a/workshops/advanced-aks/workshop.md +++ b/workshops/advanced-aks/workshop.md @@ -251,7 +251,7 @@ az aks nodepool add \ ### Tainting the System Node Pool -Now that we have created a user node pool, we need to add a taint to the system node pool to ensure that the user workloads are not scheduled on it. A taint is a key-value pair that prevents pods from being scheduled on a node unless the node has the corresponding toleration. You could taint nodes using the [kubectl taint](https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#taint) command, but since AKS can scale node pools up and down, it is recommended to use the [--node-taints](https://learn.microsoft.com/azure/aks/use-node-taints) option from the Azure CLI to ensure the taint is applied to all nodes in the pool. +Now that we have created a user node pool, we need to add a taint to the system node pool to ensure that the user workloads are not scheduled on it. A taint is a key-value pair that prevents pods from being scheduled on a node unless the pod has the corresponding toleration. You could taint nodes using the [kubectl taint](https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#taint) command, but since AKS can scale node pools up and down, it is recommended to use the [--node-taints](https://learn.microsoft.com/azure/aks/use-node-taints) option from the Azure CLI to ensure the taint is applied to all nodes in the pool. Run the following command to add a taint to the system node pool. From 1192ea4f7d68e9ea7b36cd06839b1791ffd5ae09 Mon Sep 17 00:00:00 2001 From: Kenneth Kilty Date: Tue, 12 Nov 2024 13:54:14 -0500 Subject: [PATCH 2/2] Update workshop.md shortened instruction --- workshops/advanced-aks/workshop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workshops/advanced-aks/workshop.md b/workshops/advanced-aks/workshop.md index 5fea09c..7ed083c 100644 --- a/workshops/advanced-aks/workshop.md +++ b/workshops/advanced-aks/workshop.md @@ -347,7 +347,7 @@ Run the following command to create a namespace for the application. kubectl create namespace pets ``` -Run the following command to install the application in the **pets** namespace using the following commands. +Run the following command to install the application in the **pets** namespace. ```bash kubectl apply -f https://raw.githubusercontent.com/Azure-Samples/aks-store-demo/refs/heads/main/aks-store-quickstart.yaml -n pets