上一页 1 2 3 4 5 6 7 ··· 22 下一页
摘要: Kubernetes中文指南/实践手册(201801) 来源:宋净超 浏览 1364 扫码 分享 2018-01-28 14:46:30 RBAC——基于角色的访问控制 API概述 Role与ClusterRole RoleBinding与ClusterRoleBinding 对资源的引用 一些角色 阅读全文
posted @ 2022-09-04 06:19 猎手结缘 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 转: https://www.containiq.com/post/debugging-kubernetes-nodes-in-not-ready-state Debugging Your Kubernetes Nodes in the ‘Not Ready’ State | nodenotread 阅读全文
posted @ 2022-09-01 19:46 猎手结缘 阅读(5171) 评论(0) 推荐(1) 编辑
摘要: ipconfig /? ipconfig /flushdns 刷新缓存 ipconfig /renew 重新连接所有网络设备并会重新dhcp IP地址 ipconfig /release 释放指定适配器的 IPv4 地址 ipconfig用法 ipconfig [/allcompartments] 阅读全文
posted @ 2022-08-20 20:50 猎手结缘 阅读(72) 评论(0) 推荐(0) 编辑
摘要: pip list ###列出pip 所安装的包(库) 参考文章:https://blog.csdn.net/qq_45365214/article/details/125482326 2.从安装路径site-packages查看。也就是说可以python文件可以放在 E:\python3.9.13\ 阅读全文
posted @ 2022-08-07 09:39 猎手结缘 阅读(1546) 评论(0) 推荐(0) 编辑
摘要: https://kubestone.io/en/latest/ 阅读全文
posted @ 2022-07-21 17:21 猎手结缘 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 1、 首先使用uname -a 查看内核版本 #内核是3.10.x的默认使用docker文件系统是overlay1,overlay1最多使用64层,overlay2可以使用128层,升级至4.x之后的内核就默认使用overlay2,同时也修复了cgroup的问题。 2、 这个内核的系统cgroup功 阅读全文
posted @ 2022-07-18 17:20 猎手结缘 阅读(541) 评论(0) 推荐(0) 编辑
摘要: clusterip跟kube-apiserver有什么关系之问,此问来自我的brother。 答:跟kube-apiserver没有什么关系。 转自: https://blog.csdn.net/soshow2011/article/details/117565125 前言Goolgle百度了半天, 阅读全文
posted @ 2022-07-05 11:10 猎手结缘 阅读(432) 评论(0) 推荐(0) 编辑
摘要: ETCDCTL_API=3 etcdctl get "" --prefix --keys-only |grep -Ev "^$" #查询存在etcd的数据信息 kubectl get svc -A -o wide ##查看svc,此命令可以不用加上namespace kubectl logs -f 阅读全文
posted @ 2022-06-23 14:43 猎手结缘 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 1、 当出现crashloopbackoff的时候,请检查你在配置资源的yaml文件是否有错误。 解决办法就是重启pod。 kubectl delete pod xxxxx -n xxxxx 2、当出现ImagePullBackOff的时候,请检查镜像的同时也请检查磁盘,当出现这种现象的时候一般是磁 阅读全文
posted @ 2022-06-23 10:34 猎手结缘 阅读(436) 评论(0) 推荐(0) 编辑
摘要: @echo off for /f "delims=\n" %%i in (F:\ip_list.txt) do ( echo %%i start telnet.exe %%i 443 tasklist|findstr /i "telnet.exe" if %ERRORLEVEL% == 0 (ech 阅读全文
posted @ 2022-06-21 10:22 猎手结缘 阅读(1194) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 22 下一页