2019-06-28 07:35:38 +00:00
|
|
|
{
|
2020-05-06 18:13:09 +00:00
|
|
|
"cniVersion": "0.4.0",
|
2019-06-28 07:35:38 +00:00
|
|
|
"name": "mynet",
|
|
|
|
"type": "macvlan",
|
|
|
|
"master": "{{ macvlan_interface }}",
|
|
|
|
"hairpinMode": true,
|
|
|
|
"ipam": {
|
|
|
|
"type": "host-local",
|
|
|
|
"subnet": "{{ node_pod_cidr }}",
|
|
|
|
"routes": [
|
|
|
|
{ "dst": "0.0.0.0/0" }
|
|
|
|
],
|
|
|
|
"gateway": "{{ node_pod_cidr|ipaddr('net')|ipaddr(1)|ipaddr('address') }}"
|
|
|
|
}
|
|
|
|
}
|