{ "name": "k8s-pod-network", "cniVersion": "1.0.0", "plugins": [ { "type": "ptp", "mtu": 1460, "ipam": { "type": "host-local", "ranges": [{{range $i, $range := .PodCIDRRanges}}{{if $i}}, {{end}}[{"subnet": "{{$range}}"}]{{end}}], "routes": [{{range $i, $route := .Routes}}{{if $i}}, {{end}}{"dst": "{{$route}}"}{{end}}] } }, { "type": "portmap", "capabilities": { "portMappings": true } } ] }