Taints enable a node to repel specific pods to prevent these pods from being scheduled to the node.
On the CCE console, you can also batch manage nodes' taints.
Enter the key and value of the taint to be operated, choose a taint effect, and click OK.
A taint is a key-value pair associated with an effect. The following effects are available:
To add a taint to a node, run the kubectl taint node nodename command as follows:
$ kubectl get node NAME STATUS ROLES AGE VERSION 192.168.10.170 Ready <none> 73d v1.19.8-r1-CCE21.4.1.B003 192.168.10.240 Ready <none> 4h8m v1.19.8-r1-CCE21.6.1.2.B001 $ kubectl taint node 192.168.10.240 key1=value1:NoSchedule node/192.168.10.240 tainted
To view the taint configuration, run the describe and get commands as follows:
$ kubectl describe node 192.168.10.240 Name: 192.168.10.240 ... Taints: key1=value1:NoSchedule ... $ kubectl get node 192.168.10.240 -oyaml apiVersion: v1 ... spec: providerID: 06a5ea3a-0482-11ec-8e1a-0255ac101dc2 taints: - effect: NoSchedule key: key1 value: value1 ...
To remove a taint, add a hyphen (-) at the end of the command for adding a taint, as shown in the following example:
$ kubectl taint node 192.168.10.240 key1=value1:NoSchedule- node/192.168.10.240 untainted $ kubectl describe node 192.168.10.240 Name: 192.168.10.240 ... Taints: <none> ...
You can configure a node to be unschedulable on the console. Then, CCE will add a taint with key node.kubernetes.io/unschedulable and the NoSchedule setting to the node. After a node is set to be unschedulable, new pods cannot be scheduled to this node, but pods running on the node are not affected.
This operation will add a taint to the node. You can use kubectl to view the content of the taint.
$ kubectl describe node 192.168.10.240 ... Taints: node.kubernetes.io/unschedulable:NoSchedule ...
When some issues occurred on a node, Kubernetes automatically adds a taint to the node. The built-in taints are as follows:
Tolerations are applied to pods, and allow (but do not require) the pods to schedule onto nodes with matching taints.
Taints and tolerations work together to ensure that pods are not scheduled onto inappropriate nodes. One or more taints are applied to a node. This marks that the node should not accept any pods that do not tolerate the taints.
Example:
apiVersion: v1 kind: Pod metadata: name: nginx labels: env: test spec: containers: - name: nginx image: nginx imagePullPolicy: IfNotPresent tolerations: - key: "key1" operator: "Equal" value: "value1" effect: "NoSchedule"
In the preceding example, the toleration label of the pod is key1=value1 and the taint effect is NoSchedule. Therefore, the pod can be scheduled onto the corresponding node.
You can also configure tolerations similar to the following information, which indicates that the pod can be scheduled onto a node when the node has the taint key1:
tolerations: - key: "key1" operator: "Exists" effect: "NoSchedule"