1.题目

Output the pod name that uses most CPU resource to file /root/cka/name.txt.

2.解析

本题目考测top命令,把使用CPU最多的pod写到文件中。

3.答案

  1. 查看pod的cpu使用率

    1. kubectl top pods --sort-by=cpu
  2. 将cpu使用率最高的pod的名称写入指定文件

    1. echo <pod_name> > /root/cka/name.txt