上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 123 下一页
摘要: k8s拷贝文件 1、从宿主机目录拷贝到pod中 例如,需要把宿主机中 /opt/test1.txt 文件 拷贝到pod中的 /opt 目录中 还是以 wyn-project1-7957cdf65f-ds7lh 这个pod为例 查看: kubectl exec -it -n project1 wyn- 阅读全文
posted @ 2022-12-01 16:19 滴滴滴 阅读(4105) 评论(0) 推荐(1)
摘要: hyperkube kube-apiserver --help |grep admission-plugins --admission-control strings Admission is divided into two phases. In the first phase, only mut 阅读全文
posted @ 2022-12-01 15:44 滴滴滴 阅读(64) 评论(0) 推荐(0)
摘要: E1129 02:09:35.538613 1 reflector.go:205] github.com/coredns/coredns/plugin/kubernetes/controller.go:314: Failed to list *v1.Endpoints: Get https://:4 阅读全文
posted @ 2022-11-29 10:55 滴滴滴 阅读(868) 评论(0) 推荐(0)
摘要: 安装calico网络插件之后,发现相关pod一直不能进入Ready状态,查看log,出现如下问题: Hit error connecting to datastore - retry error=Get “https://10.96.0.1:443/api/v1/nodes/foo”: dial t 阅读全文
posted @ 2022-11-29 10:06 滴滴滴 阅读(133) 评论(0) 推荐(0)
摘要: 批量替换多个文件中的字符串: 1 sed -i 's/oldstring/newstring/g' `grep -rl 搜索关键词 目录/*`(-r表示递归查找子目录,-l表示输出匹配的文件名) 阅读全文
posted @ 2022-11-28 10:42 滴滴滴 阅读(81) 评论(0) 推荐(0)
摘要: failed to run Kubelet: cannot create certificate signing request: PoNov 18 17:24:11 fp-web-15 systemd[1]: kubelet.service holdoff time over, schedulin 阅读全文
posted @ 2022-11-23 20:36 滴滴滴 阅读(606) 评论(0) 推荐(0)
摘要: [root@k8s-master01 ~]# cat aa1.txt aaaabbbccc jfdjk asdfghj zxcvbqwertyuiop helloword [root@k8s-master01 ~]# sed -nr 's#he(.*)rd#\1#gp' aa1.txt llowo 阅读全文
posted @ 2022-11-19 09:56 滴滴滴 阅读(270) 评论(0) 推荐(0)
摘要: sed -i "1i pppp" a.txt 1i中的数字1代表第一行,i为insert的缩写 i后的空格会被忽略,插入文本后,会自动添加一个换行符 "\n" sed BSD和GNU通用文件头部插入文本写法sed可以迅速在文件头部插入文本,BSD的sed和GNU Linux的版本并不一样,GNU L 阅读全文
posted @ 2022-11-17 16:50 滴滴滴 阅读(2572) 评论(0) 推荐(0)
摘要: Shell Associative Array bashi没有原生的对于类似hash table的支持,不像perl或python.下标数组元素是通过数组下标(数组下标可以是算术表达式,其结果必须是一个整数)来访问的,但是这种访问方式在表达某些关联性很强的数据时会存在限制。shell 提供了另外一种 阅读全文
posted @ 2022-11-17 16:13 滴滴滴 阅读(935) 评论(0) 推荐(0)
摘要: location 顺序/优先级: (location =) > (location 完整路径) > (location ^~ 路径) > (location ~,~* 正则顺序) > (location 部分起始路径) > (/) 解释说明(下面会有详解): = 开头表示精确匹配; 如: A 中只匹 阅读全文
posted @ 2022-11-17 11:22 滴滴滴 阅读(40) 评论(0) 推荐(0)
上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 123 下一页