Closed rayjanoka closed 1 year ago
well I may have figured it out with the help of another thread.
I added isGateway: true
here:
apiVersion: k8s.cni.cncf.io/v1
kind: NetworkAttachmentDefinition
metadata:
name: test-bridge
spec:
config: |
{
"cniVersion": "0.3.1",
"type": "bridge",
"bridge": "mybr0",
"isGateway": true,
"ipam": {
"type": "host-local",
"subnet": "192.168.12.0/24",
"rangeStart": "192.168.12.10",
"rangeEnd": "192.168.12.200",
}
}
@rayjanoka Glad to know your problem has been resolved. I'm going to close this issue, feel free to re-open it if your problem resists.
Hey there, I can't seem to get my networking to function.
I'm trying to setup a network configuration that is migratable. We are using multus with cilium, and I'm trying to just use the bridge plugin as a secondary interface.
But whatever I try I can't seem to get the bridge plugin to work with virtink while the bridge plugin does seem to work with non-virtink pods.
the
net0
interface is always DOWNI can reach the pod network/internet, but not the pods on the bridge plugin network.