『已解决』0/1 nodes are available: 1 node(s) had taints that the pod didn‘t tolerate.
📣读完这篇文章里你能收获到:K8S安装其他服务时,安装失败问题处理,了解K8S集群污点设置
·
📣读完这篇文章里你能收获到
- K8S安装其他服务时,安装失败问题处理
- 了解K8S集群污点设置
一、问题点
二、处理方法
- 允许master节点部署pod
kubectl taint nodes --all node-role.kubernetes.io/master-
三、扩展
- 设置不允许调度
kubectl taint nodes master1 node-role.kubernetes.io/master=:NoSchedule
污点可选参数
- NoSchedule: 一定不能被调度
- PreferNoSchedule: 尽量不要调度
- NoExecute: 不仅不会调度, 还会驱逐Node上已有的Pod
更多推荐
已为社区贡献3条内容
所有评论(0)