1.题目
Count the ready node in this cluster that without have a taint, and output the number to the file /root/cka/readyNode.txt
2.解析
本题目考测node以及linux命令、taint,统计出没有包含污点的所有Ready节点。
3.答案
查看ready节点数量
kubectl get nodes | grep Ready
查看没有污点的节点数量
kubectl describe node | grep NoSchedule | grep Taint
将两者相减后的数量输出到指定文件
echo <number> > /root/cka/readyNode.txt