cri-o/contrib/cni/10-crio-bridge.conf
Matthew Heon f31726b610 Update CNI config versions to 0.3.0
We've been seeing conflicts with other CNI consumers where
CRI-O's configuration files are causing the CNI plugins to fail
to start because their versions are too low. Upgrading the plugin
versions should resolve this conflict, and not cause any adverse
effect to a typical CRI-O install.

Signed-off-by: Matthew Heon <mheon@redhat.com>
2018-03-06 14:13:06 -05:00

15 lines
294 B
Text

{
"cniVersion": "0.3.0",
"name": "crio-bridge",
"type": "bridge",
"bridge": "cni0",
"isGateway": true,
"ipMasq": true,
"ipam": {
"type": "host-local",
"subnet": "10.88.0.0/16",
"routes": [
{ "dst": "0.0.0.0/0" }
]
}
}