16 lines
341 B
Plaintext
16 lines
341 B
Plaintext
|
{
|
||
|
"cniVersion": "0.3.0",
|
||
|
"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') }}"
|
||
|
}
|
||
|
}
|