暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

CKA 真题第11题

运维点滴记录 2020-09-03
470

问题:

Set configuration context $ kubectl config use-context k8s

Create a file /opt/KUCC00302/kucc00302.txt that lists all pods that implement Service foo in Namespace production.

The format of the file should be one pod name per line.

解答:

kubectl get pods -n procduction --show-labels
kubectl --namespace=production describe service foo
kubectl --namespace=production get pod -l 'run=foo' | awk '{print $1}' | grep -v NAME > /opt/KUCC00302/kucc00302.txt
复制


文章转载自运维点滴记录,如果涉嫌侵权,请发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论