would help if i actually gave it the right file ext

This commit is contained in:
2025-09-24 10:07:26 -04:00
parent e474c621fd
commit d64feb7228

View File

@@ -0,0 +1,23 @@
apiVersion: "k8s.cni.cncf.io/v1"
kind: NetworkAttachmentDefinition
metadata:
name: kubevirt-nad
spec:
config: '{
"cniVersion": "0.4.0",
"type": "bridge",
"bridge": "br-vlan50",
"isGateway": true,
"vlan": 50,
"ipam": {
"type": "host-local",
"addresses": [
{
"address": "10.105.20.254/24",
"rangeStart": "10.105.20.30",
"rangeEnd": "10.105.20.230",
"gateway": "10.105.20.1"
}
]
}
}'