Kubernetes在CKA考试中提出了一个问题,你将如何构建它



我在做CKA时,偶然发现了一个我想不通的问题。我不记得所有的细节,但它是这样的:

按CPU消耗量获取前1个节点/pod,并将其放在{path}的文件中。

kubectl top nodes/pod --sort-by cpu <-- this orders by ascending. So you have to hardcode the last node/pod.

如果你需要提取出顶部pod的名称并将其保存在文件中,你可以这样做:

假设您有3个吊舱:

$ kubectl top pod --sort-by cpu
NAME                            CPU(cores)   MEMORY(bytes)
nats-depl-6c4b4dfb7c-tjpgv      2m           4Mi
project-depl-595bbd56db-lb6vb   8m           180Mi
auth-depl-64cccc484f-dn7w5      4m           203Mi

你可以这样做:

$ kubectl top pod --sort-by cpu | head -2 | tail -1 | awk {'print $1'}
chat-depl-6dd798699b-l7wcl   #### < == returns name of the pod
## you can redirect it to any file 
$ kubectl top pod --sort-by cpu | head -2 | tail -1 | awk {'print $1'} > ./file_name
$ cat ./file_name 
chat-depl-6dd798699b-l7wcl   #### < == returns name of the pod

最新更新