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.答案

  1. 查看ready节点数量

    1. kubectl get nodes | grep Ready
  2. 查看没有污点的节点数量

    1. kubectl describe node | grep NoSchedule | grep Taint
  3. 将两者相减后的数量输出到指定文件

    1. echo <number> > /root/cka/readyNode.txt