Flannel HOST-GW 模式
Flannel HOST-GW 模式
一、环境信息
主机 | IP |
---|---|
ubuntu | 172.16.94.141 |
软件 | 版本 |
---|---|
docker | 26.1.4 |
helm | v3.15.0-rc.2 |
kind | 0.18.0 |
clab | 0.54.2 |
kubernetes | 1.23.4 |
ubuntu os | Ubuntu 20.04.6 LTS |
kernel | 5.11.5 内核升级文档 |
二、安装服务
kind
配置文件信息
$ cat install.sh
#!/bin/bash
date
set -v
# 1.prep noCNI env
cat <<EOF | kind create cluster --name=flannel-host-gw --image=kindest/node:v1.23.4 --config=-
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
networking:
# kind 默认使用 rancher cni,cni 我们需要自己创建
disableDefaultCNI: true
# 定义节点使用的 pod 网段
podSubnet: "10.244.0.0/16"
nodes:
- role: control-plane
- role: worker
- role: worker
containerdConfigPatches:
- |-
[plugins."io.containerd.grpc.v1.cri".registry.mirrors."harbor.evescn.com"]
endpoint = ["https://harbor.evescn.com"]
EOF
# 2.install cni
kubectl apply -f ./flannel.yaml
# 3.install necessary tools
# cd /opt/
# curl -o calicoctl -O -L "https://gh.api.99988866.xyz/https://github.com/containernetworking/plugins/releases/download/v0.9.0/cni-plugins-linux-amd64-v0.9.0.tgz"
# tar -zxvf cni-plugins-linux-amd64-v0.9.0.tgz
for i in $(docker ps -a --format "table {{.Names}}" | grep flannel)
do
echo $i
docker cp /opt/bridge $i:/opt/cni/bin/
docker cp /usr/bin/ping $i:/usr/bin/ping
docker exec -it $i bash -c "sed -i -e 's/jp.archive.ubuntu.com\|archive.ubuntu.com\|security.ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list"
docker exec -it $i bash -c "apt-get -y update >/dev/null && apt-get -y install net-tools tcpdump lrzsz bridge-utils >/dev/null 2>&1"
done
flannel.yaml
配置文件
# flannel.yaml
---
kind: Namespace
apiVersion: v1
metadata:
name: kube-flannel
labels:
pod-security.kubernetes.io/enforce: privileged
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: flannel
rules:
- apiGroups:
- ""
resources:
- pods
verbs:
- get
- apiGroups:
- ""
resources:
- nodes
verbs:
- list
- watch
- apiGroups:
- ""
resources:
- nodes/status
verbs:
- patch
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: flannel
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: flannel
subjects:
- kind: ServiceAccount
name: flannel
namespace: kube-system
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: flannel
namespace: kube-system
---
kind: ConfigMap
apiVersion: v1
metadata:
name: kube-flannel-cfg
namespace: kube-system
labels:
tier: node
app: flannel
data:
cni-conf.json: |
{
"name": "cbr0",
"cniVersion": "0.3.1",
"plugins": [
{
"type": "flannel",
"delegate": {
"hairpinMode": true,
"isDefaultGateway": true
}
},
{
"type": "portmap",
"capabilities": {
"portMappings": true
}
}
]
}
net-conf.json: |
{
"Network": "10.244.0.0/16",
"Backend": {
"Type": "host-gw"
}
}
---
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: kube-flannel-ds
namespace: kube-system
labels:
tier: node
app: flannel
spec:
selector:
matchLabels:
app: flannel
template:
metadata:
labels:
tier: node
app: flannel
spec:
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: kubernetes.io/os
operator: In
values:
- linux
hostNetwork: true
priorityClassName: system-node-critical
tolerations:
- operator: Exists
effect: NoSchedule
serviceAccountName: flannel
initContainers:
- name: install-cni-plugin
image: harbor.dayuan1997.com/devops/rancher/mirrored-flannelcni-flannel-cni-plugin:v1.1.0
command:
- cp
args:
- -f
- /flannel
- /opt/cni/bin/flannel
volumeMounts:
- name: cni-plugin
mountPath: /opt/cni/bin
- name: install-cni
image: harbor.dayuan1997.com/devops/rancher/mirrored-flannelcni-flannel:v0.19.2
command:
- cp
args:
- -f
- /etc/kube-flannel/cni-conf.json
- /etc/cni/net.d/10-flannel.conflist
volumeMounts:
- name: cni
mountPath: /etc/cni/net.d
- name: flannel-cfg
mountPath: /etc/kube-flannel/
containers:
- name: kube-flannel
image: harbor.dayuan1997.com/devops/rancher/mirrored-flannelcni-flannel:v0.19.2
command:
- /opt/bin/flanneld
args:
- --ip-masq
- --kube-subnet-mgr
resources:
requests:
cpu: "100m"
memory: "50Mi"
limits:
cpu: "100m"
memory: "50Mi"
securityContext:
privileged: false
capabilities:
add: ["NET_ADMIN", "NET_RAW"]
env:
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: EVENT_QUEUE_DEPTH
value: "5000"
volumeMounts:
- name: run
mountPath: /run/flannel
- name: flannel-cfg
mountPath: /etc/kube-flannel/
- name: xtables-lock
mountPath: /run/xtables.lock
- name: tun
mountPath: /dev/net/tun
volumes:
- name: tun
hostPath:
path: /dev/net/tun
- name: run
hostPath:
path: /run/flannel
- name: cni-plugin
hostPath:
path: /opt/cni/bin
- name: cni
hostPath:
path: /etc/cni/net.d
- name: flannel-cfg
configMap:
name: kube-flannel-cfg
- name: xtables-lock
hostPath:
path: /run/xtables.lock
type: FileOrCreate
flannel.yaml
参数解释
Backend.Type
- 含义: 用于指定
flannel
工作模式。 host-gw
:flannel
工作在host gw
模式。
- 含义: 用于指定
- 安装
k8s
集群和flannel
服务
# ./install.sh
Creating cluster "flannel-host-gw" ...
✓ Ensuring node image (kindest/node:v1.23.4) 🖼
✓ Preparing nodes 📦 📦 📦
✓ Writing configuration 📜
✓ Starting control-plane 🕹️
✓ Installing StorageClass 💾
✓ Joining worker nodes 🚜
Set kubectl context to "kind-flannel-host-gw"
You can now use your cluster with:
kubectl cluster-info --context kind-flannel-host-gw
Thanks for using kind! 😊
- 查看安装的服务
root@kind:~# kubectl get pods -A
NAMESPACE NAME READY STATUS RESTARTS AGE
kube-system coredns-64897985d-lxltg 1/1 Running 0 74s
kube-system coredns-64897985d-mhflc 1/1 Running 0 74s
kube-system etcd-flannel-host-gw-control-plane 1/1 Running 0 90s
kube-system kube-apiserver-flannel-host-gw-control-plane 1/1 Running 0 90s
kube-system kube-controller-manager-flannel-host-gw-control-plane 1/1 Running 0 88s
kube-system kube-flannel-ds-cvfv9 1/1 Running 0 52s
kube-system kube-flannel-ds-rh5rh 1/1 Running 0 52s
kube-system kube-flannel-ds-wfthf 1/1 Running 0 52s
kube-system kube-proxy-4b54s 1/1 Running 0 54s
kube-system kube-proxy-d2fdn 1/1 Running 0 67s
kube-system kube-proxy-fm49p 1/1 Running 0 74s
kube-system kube-scheduler-flannel-host-gw-control-plane 1/1 Running 0 88s
local-path-storage local-path-provisioner-5ddd94ff66-tqflq 1/1 Running 0 74s
k8s
集群安装 Pod
测试网络
root@kind:~# cat cni.yaml
apiVersion: apps/v1
kind: DaemonSet
#kind: Deployment
metadata:
labels:
app: cni
name: cni
spec:
#replicas: 1
selector:
matchLabels:
app: cni
template:
metadata:
labels:
app: cni
spec:
containers:
- image: harbor.dayuan1997.com/devops/nettool:0.9
name: nettoolbox
securityContext:
privileged: true
---
apiVersion: v1
kind: Service
metadata:
name: serversvc
spec:
type: NodePort
selector:
app: cni
ports:
- name: cni
port: 80
targetPort: 80
nodePort: 32000
root@kind:~# kubectl apply -f cni.yaml
daemonset.apps/cni created
service/serversvc created
root@kind:~# kubectl run net --image=harbor.dayuan1997.com/devops/nettool:0.9
pod/net created
- 查看安装服务信息
root@kind:~# kubectl get pods -o wide
NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES
cni-2l9hv 1/1 Running 0 4m50s 10.244.2.3 flannel-host-gw-worker2 <none> <none>
cni-sjkh8 1/1 Running 0 4m51s 10.244.1.2 flannel-host-gw-worker <none> <none>
net 1/1 Running 0 4m43s 10.244.2.2 flannel-host-gw-worker2 <none> <none>
root@kind:~# kubectl get svc
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 6m50s
serversvc NodePort 10.96.224.253 <none> 80:32000/TCP 5m2s
三、测试网络
同节点 Pod
网络通讯
可以查看此文档 Flannel UDP 模式 中,同节点网络通讯,数据包转发流程一致
Flannel 同节点通信通过
l2
网络通信,2
层交换机完成
不同节点 Pod
网络通讯
Pod
节点信息
## ip 信息
root@kind:~# kubectl exec -it net -- ip a l
3: eth0@if3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether e6:7c:59:58:76:c1 brd ff:ff:ff:ff:ff:ff link-netnsid 0
inet 10.244.2.2/24 brd 10.244.2.255 scope global eth0
valid_lft forever preferred_lft forever
inet6 fe80::e47c:59ff:fe58:76c1/64 scope link
valid_lft forever preferred_lft forever
## 路由信息
root@kind:~# kubectl exec -it net -- ip r s
default via 10.244.2.1 dev eth0
10.244.0.0/16 via 10.244.2.1 dev eth0
10.244.2.0/24 dev eth0 proto kernel scope link src 10.244.2.2
Pod
节点所在Node
节点信息
root@kind:~# docker exec -it flannel-host-gw-worker2 bash
## ip 信息
root@flannel-host-gw-worker2:/# ip a l
2: cni0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether ae:13:7e:8b:60:99 brd ff:ff:ff:ff:ff:ff
inet 10.244.2.1/24 brd 10.244.2.255 scope global cni0
valid_lft forever preferred_lft forever
inet6 fe80::ac13:7eff:fe8b:6099/64 scope link
valid_lft forever preferred_lft forever
3: vetha734f4bd@if3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master cni0 state UP group default
link/ether 76:7d:08:9f:45:ca brd ff:ff:ff:ff:ff:ff link-netns cni-7513bbfb-5881-8035-698b-4d35376564e8
inet6 fe80::747d:8ff:fe9f:45ca/64 scope link
valid_lft forever preferred_lft forever
4: veth73abb629@if3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master cni0 state UP group default
link/ether 02:0a:f9:70:62:7a brd ff:ff:ff:ff:ff:ff link-netns cni-0e35dceb-9e1a-3394-621a-b297c31360ab
inet6 fe80::a:f9ff:fe70:627a/64 scope link
valid_lft forever preferred_lft forever
9: eth0@if10: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether 02:42:ac:12:00:04 brd ff:ff:ff:ff:ff:ff link-netnsid 0
inet 172.18.0.4/16 brd 172.18.255.255 scope global eth0
valid_lft forever preferred_lft forever
inet6 fc00:f853:ccd:e793::4/64 scope global nodad
valid_lft forever preferred_lft forever
inet6 fe80::42:acff:fe12:4/64 scope link
valid_lft forever preferred_lft forever
## 路由信息
root@flannel-host-gw-worker2:/# ip r s
default via 172.18.0.1 dev eth0
10.244.0.0/24 via 172.18.0.2 dev eth0
10.244.1.0/24 via 172.18.0.3 dev eth0
10.244.2.0/24 dev cni0 proto kernel scope link src 10.244.2.1
172.18.0.0/16 dev eth0 proto kernel scope link src 172.18.0.4
Pod
节点进行ping
包测试,访问cni-sjkh8
Pod
节点
root@kind:~# kubectl exec -it net -- ping 10.244.1.2 -c 1
PING 10.244.1.2 (10.244.1.2): 56 data bytes
64 bytes from 10.244.1.2: seq=0 ttl=62 time=0.172 ms
--- 10.244.1.2 ping statistics ---
1 packets transmitted, 1 packets received, 0% packet loss
round-trip min/avg/max = 0.172/0.172/0.172 ms
Pod
节点eth0
网卡抓包
net~$ tcpdump -pne -i eth0
03:57:37.631470 e6:7c:59:58:76:c1 > ae:13:7e:8b:60:99, ethertype IPv4 (0x0800), length 98: 10.244.2.2 > 10.244.1.2: ICMP echo request, id 62, seq 0, length 64
03:57:37.631543 ae:13:7e:8b:60:99 > e6:7c:59:58:76:c1, ethertype IPv4 (0x0800), length 98: 10.244.1.2 > 10.244.2.2: ICMP echo reply, id 62, seq 0, length 64
数据包源 mac
地址: e6:7c:59:58:76:c1
为 eth0
网卡 mac
地址,而目的 mac
地址: ae:13:7e:8b:60:99
为 net
Pod
节点 cni0
网卡对应的网卡 mac
地址,cni0
网卡 ip
地址为网络网关地址 10.244.2.1
, flannel
为 2
层网络模式通过路由送往数据到网关地址
net~$ arp -n
Address HWtype HWaddress Flags Mask Iface
10.244.2.3 ether 3e:25:81:d3:e6:8c C eth0
10.244.2.1 ether ae:13:7e:8b:60:99 C eth0
而通过 veth pair
可以确定 Pod
节点 eth0
网卡对应的 veth pair
为 vetha734f4bd@if3
网卡
flannel-host-gw-worker2
节点vetha734f4bd
网卡抓包
root@flannel-host-gw-worker2:/# tcpdump -pne -i vetha734f4bd
04:04:07.912502 e6:7c:59:58:76:c1 > ae:13:7e:8b:60:99, ethertype IPv4 (0x0800), length 98: 10.244.2.2 > 10.244.1.2: ICMP echo request, id 76, seq 0, length 64
04:04:07.912614 ae:13:7e:8b:60:99 > e6:7c:59:58:76:c1, ethertype IPv4 (0x0800), length 98: 10.244.1.2 > 10.244.2.2: ICMP echo reply, id 76, seq 0, length 64
因为他们互为 veth pair
所以抓包信息相同
flannel-host-gw-worker2
节点cni0
网卡抓包
root@flannel-host-gw-worker2:/# tcpdump -pne -i cni0
04:07:20.071892 e6:7c:59:58:76:c1 > ae:13:7e:8b:60:99, ethertype IPv4 (0x0800), length 98: 10.244.2.2 > 10.244.1.2: ICMP echo request, id 84, seq 0, length 64
04:07:20.071962 ae:13:7e:8b:60:99 > e6:7c:59:58:76:c1, ethertype IPv4 (0x0800), length 98: 10.244.1.2 > 10.244.2.2: ICMP echo reply, id 84, seq 0, length 64
数据包源 mac 地址: e6:7c:59:58:76:c1
为 net
Pod
节点 eth0
网卡 mac
地址,而目的 mac 地址: ae:13:7e:8b:60:99
为 cni0
网卡 mac 地址
查看
flannel-host-gw-worker2
主机路由信息,发现并在数据包会在通过10.244.1.0/24 via 172.18.0.3 dev eth0
路由信息转发
flannel-host-gw-worker2
节点eth0
网卡抓包
root@flannel-host-gw-worker2:/# tcpdump -pne -i eth0 icmp
06:21:51.403459 02:42:ac:12:00:04 > 02:42:ac:12:00:03, ethertype IPv4 (0x0800), length 98: 10.244.2.2 > 10.244.1.2: ICMP echo request, id 91, seq 0, length 64
06:21:51.403501 02:42:ac:12:00:03 > 02:42:ac:12:00:04, ethertype IPv4 (0x0800), length 98: 10.244.1.2 > 10.244.2.2: ICMP echo reply, id 91, seq 0, length 64
数据包源 mac 地址: 02:42:ac:12:00:04
为 Node
节点 eth0
网卡 mac
地址,而目的 mac 地址: 02:42:ac:12:00:03
为对端 Node
节点 eth0
网卡 mac
地址
root@flannel-host-gw-worker2:/# arp -n
Address HWtype HWaddress Flags Mask Iface
172.18.0.3 ether 02:42:ac:12:00:03 C eth0
总结:不同节点
Pod
通讯,数据包通过veth pair
送往Node
节点cni0
网卡,然后查询Node
节点路由表信息,并送往数据包到对端节点
数据包流向
- 数据从
pod
服务发出,通过查看本机路由表,送往10.244.2.1
网卡。路由:10.244.0.0/16 via 10.244.2.1 dev eth0
- 通过
veth pair
网卡vetha734f4bd
发送数据到flannel-host-gw-worker2
主机上,在转送到cni0: 10.244.2.1
网卡 flannel-host-gw-worker2
主机查看自身路由后,会送往eth0
接口,因为目的地址为10.244.1.2
。路由:10.244.1.0/24 via 172.18.0.3 dev eth0
- 对端
flannel-udp-worker
主机接受到数据包后,进行数据解封装 - 解封装后发现目的地址为
10.244.1.2
,通过查看本机路由表,送往cni0
网卡。路由:10.244.1.0/24 dev cni0 proto kernel scope link src 10.244.1.1
- 通过
cni0
网卡brctl showmacs cni0
mac
信息 ,最终会把数据包送到cni-sjkh8
主机
Service
网络通讯
可以查看此文档 Flannel UDP 模式 中,Service
网络通讯,数据包转发流程一致