摘要:
问题:版本不支持 #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 阅读全文
摘要:
问题: 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 阅读全文
摘要:
demo package main import "fmt" func main() { s := make([]string, 10) // 前10个元素没初始化,就是10个空字符串 fmt.Println(len(s)) s = append(s, "111111") // 第11位追加字符串 阅读全文
摘要:
查看pod使用的内存: #kubectl top pod -nkube-system | grep manager manager-7c5849fbc-bhmmn 5m 155Mi manager-7c5849fbc-bsv77 5m 161Mi POD内RSS查看: bash-4.4# cat / 阅读全文
摘要:
原文链接:https://www.cnblogs.com/lipengxiang2009/p/7446388.html 一、rp_filter参数介绍 rp_filter - INTEGER0 - No source validation.1 - Strict mode as defined in 阅读全文
摘要:
原文参考链接:https://www.runoob.com/git/git-reset.html git reset 命令用于回退版本,可以指定退回某一次提交的版本。 git reset 命令语法格式如下: git reset [--soft | --mixed | --hard] [HEAD] - 阅读全文
摘要:
原文链接: https://www.cnblogs.com/xuxinkun/p/11785521.html https://blog.csdn.net/qq_32641153/article/details/100614499 liveness主要用来确定何时重启容器。liveness探测的结果会 阅读全文
摘要:
{ "workbench.colorCustomizations": { "minimap.selectionHighlight": "#bbff00", "minimap.findMatchHighlight": "#ff0000", "editor.selectionBackground": " 阅读全文
摘要:
官方文档:https://kubernetes.io/zh/docs/concepts/services-networking/ingress/ Ingress 是什么? Ingress 公开了从集群外部到集群内服务的 HTTP 和 HTTPS 路由。 流量路由由 Ingress 资源上定义的规则控 阅读全文
摘要:
ebtable最重要的应用是当内核开启了bridge-nf功能后,将iptables和ebtables都整合到二层处理里 阅读全文