2022-10-16 17:19:39 +02:00
|
|
|
# Taints 101
|
|
|
|
|
|
|
|
## Objectives
|
|
|
|
|
|
|
|
1. Check if one of the nodes in the cluster has taints (doesn't matter which node)
|
|
|
|
2. Create a taint on one of the nodes in your cluster with key of "app" and value of "web" and effect of "NoSchedule"
|
|
|
|
1. Explain what it does exactly
|
|
|
|
2. Verify it was applied
|
2022-10-16 22:17:47 +02:00
|
|
|
3. Run a Pod that will be able to run on the node on which you applied the taint
|
2022-10-16 17:19:39 +02:00
|
|
|
|
|
|
|
## Solution
|
|
|
|
|
2022-10-16 22:17:47 +02:00
|
|
|
Click [here](solution.md) to view the solution.
|