1.题目2.解析3.答案 1.题目Output the pod name that uses most CPU resource to file /root/cka/name.txt. 2.解析本题目考测top命令,把使用CPU最多的pod写到文件中。 3.答案 查看pod的cpu使用率 kubectl top pods --sort-by=cpu 将cpu使用率最高的pod的名称写入指定文件 echo <pod_name> > /root/cka/name.txt