add maclvan cni example

This commit is contained in:
Nico Schottelius 2022-10-18 17:10:56 +02:00
parent 1417d39b5f
commit 142d4566fc
1 changed files with 19 additions and 0 deletions

19
cni/macvlan-v6.conf Normal file
View File

@ -0,0 +1,19 @@
{
"cniVersion": "0.3.1",
"name": "mynet",
"type": "macvlan",
"master": "eth1",
"isDefaultGateway": true,
"ipam": {
"type": "host-local",
"ranges": [
[
{
"subnet": "2a0a:e5c0:10:bee::/64",
"rangeStart": "2a0a:e5c0:10:bee::0010",
"rangeEnd": "2a0a:e5c0:10:bee::00ff"
}
]
]
}
}