Saved Bookmarks
| 1. |
If you have a pod that is using a ConfigMap which you updated, and you want the container to be updated with those changes, what should you do? |
|
Answer» When a NODE is tainted, the pods don't get SCHEDULED by default, however, if we have to still schedule a pod to a tainted node we can start APPLYING tolerations to the pod spec. Apply a taint to a node: kubectl taint nodes node1 KEY=value:NoScheduleApply TOLERATION to a pod: spec: tolerations: - key: "key" operator: "Equal" value: "value" effect: "NoSchedule" |
|