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>
15 lines
294 B
Text
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" }
|
|
]
|
|
}
|
|
}
|