随笔分类 - k8s / cni插件
摘要:网络配置格式 graph LR A[配置格式] A1[cniVersion] A2[name] A3[plugins] A4[disableCheck] A --> A1 A --> A2 A --> A3 A -->|大多数cni中没有配置这块| A4 A31(type) A32(capabili
阅读全文
摘要:查看当前网卡是否支持sr-iov lscpi -v 创建vf https://www.cnblogs.com/juzib/p/12895887.html https://forum.openeuler.org/t/topic/675
阅读全文
摘要:### 同pod间的容器通讯 ``` pod内容器共享同一网络名称空间,因此同一pod间的容器通过lo网卡直接通讯 ``` ### 同主机容器的网络通讯 ``` 在docker(默认docker0)和flannel(cni0) 中使用二层网桥进行通讯 ``` ```bash 1. 创建网络名称空间
阅读全文
摘要:快速开始 **第一步:配置etcd** + 启动 ```bash export ETCDCTL_API=3 /etcd \ --name etcd-1 \ --listen-peer-urls 'http://10.0.16.14:2380' \ --initial-advertise-peer-u
阅读全文
摘要:https://www.cni.dev/ https://github.com/containernetworking/plugins https://www.rfc-editor.org/rfc/rfc7348 静态分配pod ip https://github.com/k8snetworkplu
阅读全文