blue-psychiatrist-69682
07/17/2024, 2:41 AMapiVersion: <http://k8s.cni.cncf.io/v1|k8s.cni.cncf.io/v1>
kind: NetworkAttachmentDefinition
metadata:
name: multus-default
namespace: kube-system
spec:
config: '{
"cniVersion": "0.3.1",
"type": "bridge",
"bridge": "br-multicast",
"isGateway": true,
"hairpinMode": true,
"isMasq": false,
"ipam": {
"type": "host-local",
"subnet": "10.100.0.0/16"
}
}'
And annotating my pods correctly. I can confirm that multus is adding the interface to my pod and I can verify it running a shell on the pod.
I have a simple camera running broadcasting on <udp://239.255.0.1:1234>
but I am unable to see any traffic inside the pod (confirmed via tcpdump
inside pod) but I can see traffic on the host.
Has anyone had any success with k3s, multus and multicasting?