上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: kubectl api-resources NAME SHORTNAMES APIGROUP NAMESPACED KIND bindings true Binding componentstatuses cs false ComponentStatus configmaps cm true Con 阅读全文
posted @ 2020-02-14 17:19 海豚汪洋 阅读(2171) 评论(0) 推荐(0) 编辑
摘要: CentOS 下 rpm包与 yum 安装与卸载 rpm包的安装: 1.安装一个包 # rpm -ivh 2.升级一个包 # rpm -Uvh 3.移走一个包 # rpm -e 4.安装参数 --force 即使覆盖属于其它包的文件也强迫安装 --nodeps 如果该RPM包的安装依赖其它包,即使其 阅读全文
posted @ 2020-02-13 10:43 海豚汪洋 阅读(149) 评论(0) 推荐(0) 编辑
摘要: cfssl-certinfo -cert /etc/kubernetes/ssl/ca.pemopenssl x509 -in ca.pem -text -nooutopenssl x509 -noout -dates -in /var/lib/kubelet/pki/kubelet.crt 阅读全文
posted @ 2020-01-16 16:45 海豚汪洋 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 博客 https://aleiwu.com/post/kubectl-debug-intro/ github https://github.com/aylei/kubectl-debug/blob/master/docs/zh-cn.md 阅读全文
posted @ 2020-01-09 10:47 海豚汪洋 阅读(139) 评论(0) 推荐(0) 编辑
摘要: docker system prune 自动清理说明: 该指令默认会清除所有如下资源: 已停止的容器(container) 未被任何容器所使用的卷(volume) 未被任何容器所关联的网络(network) 所有悬空镜像(image)。 该指令默认只会清除悬空镜像,未被使用的镜像不会被删除。添加-a 阅读全文
posted @ 2020-01-01 10:51 海豚汪洋 阅读(2007) 评论(0) 推荐(0) 编辑
摘要: 删除none镜像 可以编辑 ~/.zshrc (或~/.bashrc) 指定指令别名 ####################官方删除命令############### none镜像产生的原因是: 官方提供如下命令来删除,注意:如果该none镜像被使用,将不会被删除: 阅读全文
posted @ 2019-12-16 17:34 海豚汪洋 阅读(1823) 评论(0) 推荐(1) 编辑
摘要: 将单个文件保存为tar文件,并加载到本地 将多个文件保存为tar文件,并加载到本地 docker save ** ** ** ** > images.tardocker load < ksp_images_20191206.tar 阅读全文
posted @ 2019-12-13 16:51 海豚汪洋 阅读(2990) 评论(0) 推荐(0) 编辑
摘要: 删除节点 1、驱逐节点上的pod:kubectl drain 10.20.20.33 --delete-local-data --force --ignore-daemonsets 2、删除节点:kubectl delete node 10.20.20.33 阅读全文
posted @ 2019-12-06 20:08 海豚汪洋 阅读(2736) 评论(0) 推荐(0) 编辑
摘要: netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}' 解释: 返回结果示例: LAST_ACK 5 (正在等待处理的请求数) SYN_RECV 30 ESTABLISHED 1597 (正常数据传输状态) FIN_WAIT1 51 FIN_WAIT2 504 TIME_WAIT 1057 (处理完毕,等待超时结束的 阅读全文
posted @ 2019-11-29 15:48 海豚汪洋 阅读(833) 评论(0) 推荐(0) 编辑
摘要: sed ':t;N;s/\n/,/;b t' filename sed '/^\s*$/d' konghang.txt 删除文件中的空行 阅读全文
posted @ 2019-10-26 19:30 海豚汪洋 阅读(2515) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页