Hello ๐Ÿ˜Š What does this error mean? ``` Events: Type Reason . . .

Edith Puclla:
Hello :blush:
What does this error mean?

Events:
  Type     Reason            Age                From               Message
  ----     ------            ----               ----               -------
  Warning  FailedScheduling  16s (x2 over 16s)  default-scheduler  0/2 nodes are available: 1 node(s) had taint {<http://node-role.kubernetes.io/master|node-role.kubernetes.io/master>: }, that the pod didn't tolerate, 1 node(s) had taint {<http://node.kubernetes.io/unreachable|node.kubernetes.io/unreachable>: }, that the pod didn't tolerate.

I just created a simple pod in a server using this command:

kubectl run mypodx --image=redis --dry-run=client -o yaml &gt;/root/mypodx.yaml

Ravi Shanker:
You tried creating a pod named hello which already exists

Edith Puclla:
Sorry @Ravi Shanker, I created a new pod, and I am having this: โ€œFailedSchedulingโ€ something with taint.

Then I just accidentally create again, but the main issue is that message in the description o the pod

Ravi Shanker:
Node has taint set. You have to set toleration for pod to schedule on that node. Chapter on taints and toleration explains it.

Edith Puclla:
I see, I need to add a toleration on that pod. okey, thank you

Ravi Shanker:
Possibly scheduler is not working. In that case Static pod or pod with option nodeName needs to be created for specific node.

Edith Puclla:
I see