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

2021/8/1 12:05:56

本文主要是介绍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



这篇关于1 node(s) had taints that the pod didn‘t tolerate的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程