node(s) had taints that the pod

2019-05-28  本文已影响0人  北二条

今天创建完集群后,一个pod一直是pending状态,describe pod:

3 node(s) had taints that the pod didn't tolerate.

直译意思是节点有了污点无法容忍,执行kubectl get no -o yaml | grep taint -A 5 之后发现该节点是不可调度的。这是因为kubernetes出于安全考虑默认情况下无法在master节点上部署pod,于是用下面方法解决:

kubectl taint nodes --all node-role.kubernetes.io/master-
```
上一篇下一篇

猜你喜欢

热点阅读