Skip to content

Commit

Permalink
Merge pull request #44 from Azure-Samples/lab-deepdive-qa-ken
Browse files Browse the repository at this point in the history
Lab deepdive qa ken
  • Loading branch information
chzbrgr71 authored Nov 12, 2024
2 parents 2015252 + 1192ea4 commit 608c48a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workshops/advanced-aks/workshop.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 608c48a

Please sign in to comment.