摘要:
find ./ -type f -ctime +30 | xargs rm -rf 阅读全文
摘要:
du -h -x --max-depth=1 阅读全文
摘要:
truncate -s 0 $(docker inspect --format='{{.LogPath}}' $(docker ps -aq)) 阅读全文
摘要:
crictl ps -a | grep 'Exited'|awk '{print $1}'|xargs crictl rm 阅读全文
摘要:
journalctl --vacuum-time=1h 阅读全文
摘要:
获取argocd密码PASSWORD kubectl get secret argocd-initial-admin-secret -nargocd -o jsonpath="{.data.password}"|base64 -d 登陆: admin/PASSWORD 阅读全文