侧边栏壁纸
博主头像
汪洋

即使慢,驰而不息,纵会落后,纵会失败,但一定可以达到他所向的目标。 - 鲁迅

  • 累计撰写 191 篇文章
  • 累计创建 74 个标签
  • 累计收到 112 条评论

K8S - 常用的清理 Kubernetes 集群资源命令

汪洋
2021-12-27 / 0 评论 / 0 点赞 / 656 阅读 / 1,759 字

长时间运行的集群,常会面临各种资源耗尽的问题,另外磁盘不足时 Kubelet 还会主动清理镜像增加不确定因素,本文提供了一些命令片段用于清理工作

一、Kubernetes 基础对象清理

  • 清理 Evicted 状态的 Pod
kubectl get pods --all-namespaces -o wide | grep Evicted | awk '{print $1,$2}' | xargs -L1 kubectl delete pod -n
  • 清理 Error 状态的 Pod
kubectl get pods --all-namespaces -o wide | grep Error | awk '{print $1,$2}' | xargs -L1 kubectl delete pod -n
  • 清理 Completed 状态的 Pod
kubectl get pods --all-namespaces -o wide | grep Completed | awk '{print $1,$2}' | xargs -L1 kubectl delete pod -n
  • 清理没有被使用的 PV
kubectl describe -A pvc | grep -E "^Name:.*$|^Namespace:.*$|^Used By:.*$" | grep -B 2 "<none>" | grep -E "^Name:.*$|^Namespace:.*$" | cut -f2 -d: | paste -d " " - - | xargs -n2 bash -c 'kubectl -n ${1} delete pvc ${0}'
  • 清理没有被绑定的 PVC
kubectl get pvc --all-namespaces | tail -n +2 | grep -v Bound | awk '{print $1,$2}' | xargs -L1 kubectl delete pvc -n
  • 清理没有被绑定的 PV
kubectl get pv | tail -n +2 | grep -v Bound | awk '{print $1}' | xargs -L1 kubectl delete pv

二、Linux 清理

  • 查看磁盘全部空间
df -hl /
	Filesystem      Size  Used Avail Use% Mounted on
	/dev/sda2       100G   47G   54G  47% /
  • 查看指定目录占用
du -sh .
	24G .
  • 删除指定前缀的文件夹
cd /nfsdata
ls | grep archived- |xargs -L1 rm -r
  • 清理僵尸进程
ps -A -ostat,ppid | grep -e '^[Zz]' | awk '{print }' | xargs kill -HUP > /dev/null 2>&1

三、Docker 清理

  • 查看磁盘使用情况
docker system df
	TYPE            TOTAL      ACTIVE     SIZE         RECLAIMABLE
	Images          361        23        178.5GB      173.8GB (97%)
	Containers      29         9         6.682GB      6.212GB (92%)
	Local Volumes   4          0         3.139MB      3.139MB (100%)
    Build Cache     0          0         0B           0B
  • 清理 none 镜像
docker images | grep none | awk '{print $3}' | xargs docker rmi
  • 清理不再使用的数据卷
docker volume rm $(docker volume ls -q)

或者

docker volume prune
  • 清理缓存
docker builder prune
  • 全面清理

删除关闭的容器、无用的存储卷、无用的网络、dangling 镜像(无 tag 镜像)

docker system prune -f
  • 清理正则匹配上的镜像

这里清理的是 master-8bcf8d7-20211206-111155163 格式的镜像

docker images |grep -E "([0-9a-z]*[-]){3,}[0-9]{9}" |awk '{print $3}' | xargs docker rmi

四、设置定时

  • 查看定时任务
crontab -l
  • 设置定时任务
crontab -e 

文本新增定时任务

# 这里第一个任务是每隔六个小时的第 35 分钟执行,第二个任务每天的 1 时 45 分执行
*/35 */6 * * *  docker images | grep none | awk '{print $3}' | xargs docker rmi45 1 * * * docker system prune -f
0

评论区