Skip to content

Commit f91c1ef

Browse files
authored
Merge pull request kubernetes#91370 from justaugustus/cni
Update CNI to v0.8.6
2 parents cd16aba + b692502 commit f91c1ef

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

build/dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
22
- name: "cni"
3-
version: 0.8.5
3+
version: 0.8.6
44
refPaths:
55
- path: build/workspace.bzl
66
match: CNI_VERSION =

build/workspace.bzl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ load("//build:workspace_mirror.bzl", "mirror")
1717
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file")
1818
load("@io_bazel_rules_docker//container:container.bzl", "container_pull")
1919

20-
CNI_VERSION = "0.8.5"
20+
CNI_VERSION = "0.8.6"
2121
_CNI_TARBALL_ARCH_SHA256 = {
22-
"amd64": "bd682ffcf701e8f83283cdff7281aad0c83b02a56084d6e601216210732833f9",
23-
"arm": "86a868234045837cb3f5d58a0a4468ff42845d50b5e87bd128f050ef393d7495",
24-
"arm64": "a7881ec37e592c897bdfd2a225b4ed74caa981e3c4cdcf8f45574f8d2f111bce",
25-
"ppc64le": "a26cc3734f7cb980ab8fb3aaa64ccf2d67291478130009fa9542355fbdd94aa5",
26-
"s390x": "033ea910a83144609083d5c3fb62bf4a379b0b17729a1a9e829feed9fa7a9d97",
22+
"amd64": "994fbfcdbb2eedcfa87e48d8edb9bb365f4e2747a7e47658482556c12fd9b2f5",
23+
"arm": "28e61b5847265135dc1ca397bf94322ecce4acab5c79cc7d360ca3f6a655bdb7",
24+
"arm64": "43fbf750c5eccb10accffeeb092693c32b236fb25d919cf058c91a677822c999",
25+
"ppc64le": "61d6c6c15d3e4fa3eb85d128c9c0ff2658f38e59047ae359be47d193c673e116",
26+
"s390x": "ca126a3bd2cd8dff1c7bbfc3c69933b284c4e77614391c7e1f74b0851fc3b289",
2727
}
2828

2929
CRI_TOOLS_VERSION = "1.17.0"

cluster/gce/config-common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ export WINDOWS_CNI_CONFIG_DIR="${WINDOWS_K8S_DIR}\cni\config"
142142
# CNI storage path for Windows nodes
143143
export WINDOWS_CNI_STORAGE_PATH="https://storage.googleapis.com/k8s-artifacts-cni/release"
144144
# CNI version for Windows nodes
145-
export WINDOWS_CNI_VERSION="v0.8.5"
145+
export WINDOWS_CNI_VERSION="v0.8.6"
146146
# Pod manifests directory for Windows nodes on Windows nodes.
147147
export WINDOWS_MANIFESTS_DIR="${WINDOWS_K8S_DIR}\manifests"
148148
# Directory where cert/key files will be stores on Windows nodes.

cluster/gce/gci/configure.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ set -o nounset
2424
set -o pipefail
2525

2626
### Hardcoded constants
27-
DEFAULT_CNI_VERSION="v0.8.5"
28-
DEFAULT_CNI_SHA1="677d218b62c0ef941c1d0b606d6570faa5277ffd"
27+
DEFAULT_CNI_VERSION="v0.8.6"
28+
DEFAULT_CNI_SHA1="a31251105250279fe57b4474d91d2db1d4d48b5a"
2929
DEFAULT_NPD_VERSION="v0.8.0"
3030
DEFAULT_NPD_SHA1="9406c975b1b035995a137029a004622b905b4e7f"
3131
DEFAULT_CRICTL_VERSION="v1.17.0"

test/e2e_node/remote/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
// utils.go contains functions used across test suites.
2828

2929
const (
30-
cniVersion = "v0.8.5"
30+
cniVersion = "v0.8.6"
3131
cniArch = "amd64"
3232
cniDirectory = "cni/bin" // The CNI tarball places binaries under directory under "cni/bin".
3333
cniConfDirectory = "cni/net.d"

0 commit comments

Comments
 (0)