上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 53 下一页
摘要: 问题:版本不支持 #tc filter add dev veth100 ingress bpf da obj proxy.o sec tc No ELF library support compiled in. 解决: # 安装libbpf: git clone https://github.com 阅读全文
posted @ 2022-02-19 22:54 salami_china 阅读(860) 评论(0) 推荐(0) 编辑
摘要: 问题: whoami: relocation error: /lib64/libc.so.6: symbol __tunable_get_val, version GLIBC_PRIVATE not defined in file ld-linux-x86-64.so.2 with link tim 阅读全文
posted @ 2022-01-27 22:13 salami_china 阅读(7862) 评论(5) 推荐(2) 编辑
摘要: demo package main import "fmt" func main() { s := make([]string, 10) // 前10个元素没初始化,就是10个空字符串 fmt.Println(len(s)) s = append(s, "111111") // 第11位追加字符串 阅读全文
posted @ 2021-12-07 11:00 salami_china 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 查看pod使用的内存: #kubectl top pod -nkube-system | grep manager manager-7c5849fbc-bhmmn 5m 155Mi manager-7c5849fbc-bsv77 5m 161Mi POD内RSS查看: bash-4.4# cat / 阅读全文
posted @ 2021-11-26 16:45 salami_china 阅读(5515) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://www.cnblogs.com/lipengxiang2009/p/7446388.html 一、rp_filter参数介绍 rp_filter - INTEGER0 - No source validation.1 - Strict mode as defined in 阅读全文
posted @ 2021-11-08 16:30 salami_china 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 原文参考链接:https://www.runoob.com/git/git-reset.html git reset 命令用于回退版本,可以指定退回某一次提交的版本。 git reset 命令语法格式如下: git reset [--soft | --mixed | --hard] [HEAD] - 阅读全文
posted @ 2021-11-04 20:07 salami_china 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 原文链接: https://www.cnblogs.com/xuxinkun/p/11785521.html https://blog.csdn.net/qq_32641153/article/details/100614499 liveness主要用来确定何时重启容器。liveness探测的结果会 阅读全文
posted @ 2021-11-01 11:47 salami_china 阅读(242) 评论(0) 推荐(0) 编辑
摘要: { "workbench.colorCustomizations": { "minimap.selectionHighlight": "#bbff00", "minimap.findMatchHighlight": "#ff0000", "editor.selectionBackground": " 阅读全文
posted @ 2021-10-29 12:13 salami_china 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 官方文档:https://kubernetes.io/zh/docs/concepts/services-networking/ingress/ Ingress 是什么? Ingress 公开了从集群外部到集群内服务的 HTTP 和 HTTPS 路由。 流量路由由 Ingress 资源上定义的规则控 阅读全文
posted @ 2021-10-28 10:32 salami_china 阅读(77) 评论(0) 推荐(0) 编辑
摘要: ebtable最重要的应用是当内核开启了bridge-nf功能后,将iptables和ebtables都整合到二层处理里 阅读全文
posted @ 2021-10-21 16:09 salami_china 阅读(145) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 53 下一页