Taints和Tolerations -- 污点- 容忍

Posted hixiaowei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Taints和Tolerations -- 污点- 容忍相关的知识,希望对你有一定的参考价值。

1.taint 定义在node上,排斥pod

2.toleration定义在pod中,容忍pod

3.可以在命令行为Node节点添加Taints:  kubectl taint nodes node1 foo=bar:NoSchedule

4.在pod的定义文件spec中加入tolerations,

apiVersion: v1
kind: Pod
...
spec:
        tolerations:
        - key: "foo"
          operator: "Equal"
          value: "bar"
          effect: "NoScheduale"

















以上是关于Taints和Tolerations -- 污点- 容忍的主要内容,如果未能解决你的问题,请参考以下文章

Kubernetes污点(taints)与容忍(tolerations)

K8S调度之Taints and Tolerations

K8S调度之Taints and Tolerations

K8S调度之Taints and Tolerations

k8s基本概念-配置调度策略之(Taints-and-Tolerations)

Kubernetes的污点(Taint)和容忍(Tolerations)