学习资料
经验贴
常用命令
kubectl explain replicaset ## List the fields for supported resources
kubectl api-resources ## list a complete list of supported resources
kubectl run test-nslookup --image=busybox:1.28 --rm -it --restart=Never -- nslookup nginx-resolver-service ## 运行后删除pod
kubectl top pods --selector="app=demo" | grep -v NAME | sort -k 2 -nr ## 找到指定service下的pod中,cpu利用率按高到底排序
## 删除 .spec.claimRef,可让pv从released状态重新变为available
刷题
考试Tips
- 书签栏搜索插件:Bookmark Sidebar
- 考试时有 Notepad 可供复制
Ctrl+X,Ctrl+E
可编辑以 \
分隔的多行命令
- 复制后
cat > static.yaml
,有时会比跨 node scp static.yaml node01:/root/
方便的多
深入