bump cni dependencies

Signed-off-by: Antonio Ojea <aojea@redhat.com>
This commit is contained in:
Antonio Ojea
2020-08-11 19:08:44 +02:00
parent bb0ca842e9
commit 1403a391c3
20 changed files with 517 additions and 238 deletions

View File

@@ -51,7 +51,7 @@ func TestUpdateRuntimeConfig(t *testing.T) {
},
]
}`
testCIDR = "10.0.0.0/24, 2001:4860:4860::8888/32"
testCIDR = "10.0.0.0/24, 2001:4860:4860::/64"
expected = `
{
"name": "test-pod-network",
@@ -63,7 +63,7 @@ func TestUpdateRuntimeConfig(t *testing.T) {
"ipam": {
"type": "host-local",
"subnet": "10.0.0.0/24",
"ranges": [[{"subnet": "10.0.0.0/24"}], [{"subnet": "2001:4860:4860::8888/32"}]],
"ranges": [[{"subnet": "10.0.0.0/24"}], [{"subnet": "2001:4860:4860::/64"}]],
"routes": [{"dst": "0.0.0.0/0"}, {"dst": "::/0"}]
}
},