编程语言
首页 > 编程语言> > 1 node(s) had taints that the pod didn‘t tolerate

1 node(s) had taints that the pod didn‘t tolerate

作者:互联网

kubernetes增加污点,达到pod是否能在做节点运行

master node参与工作负载 (只在主节点执行)
使用kubeadm初始化的集群,出于安全考虑Pod不会被调度到Master Node上,也就是说Master Node不参与工作负载。

这里搭建的是测试环境可以使用下面的命令使Master Node参与工作负载:
k8s是master节点的hostname
允许master节点部署pod,使用命令如下:

kubectl taint nodes --all node-role.kubernetes.io/master-

输出如下:

node “k8s” untainted

输出error: taint “node-role.kubernetes.io/master:” not found错误忽略。

禁止master部署pod

kubectl taint nodes k8s node-role.kubernetes.io/master=true:NoSchedule

原文链接:https://blog.csdn.net/BigData_Mining/article/details/88683459

标签:node,kubernetes,didn,had,master,Master,pod,节点
来源: https://blog.csdn.net/qq_20817327/article/details/119254042