美文网首页
备战CKA每日一题——第10天

备战CKA每日一题——第10天

作者: 小E的私房菜 | 来源:发表于2020-03-11 14:35 被阅读0次

第十题:统计Service中的pod:


题目:Create a file ~/kucc00302.txt that lists all pods that implement Service nginx-service in Namespce ns-ehj,The format of the file should be one pod name per line
解题思路:

本题考的是kubectl的指令,属于基础题型:

解题步骤:
  • 步骤1: 创建指定文件:
  • 步骤2: 列出在Namespce 为ns-ehj中实现Service 为nginx-service的所有pod
    1.查找所有实现为nginx-service的所有svc:
sudo kubectl get svc --show-labels -n ns-ehj | grep nginx-service
image.png
  1. 查找service下的所有pod,并将其放置到文件里去:
sudo kubectl get pods -l run=nginx-service -n ns-ehj | grep NAME|awk '{print}$1' > KUCC00302.txt

相关文章

网友评论

      本文标题:备战CKA每日一题——第10天

      本文链接:https://www.haomeiwen.com/subject/ljccjhtx.html