Skip to content

Commit

Permalink
Merge pull request kubernetes#123894 from saschagrunert/cni-plugins
Browse files Browse the repository at this point in the history
Update cni-plugins to v1.4.1
  • Loading branch information
k8s-ci-robot authored Apr 18, 2024
2 parents 17e4271 + a35b75e commit 0c55f74
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build/dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:

# CNI plugins
- name: "cni"
version: 1.4.0
version: 1.4.1
refPaths:
- path: cluster/gce/config-common.sh
match: WINDOWS_CNI_VERSION=
Expand Down
2 changes: 1 addition & 1 deletion cluster/gce/config-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export WINDOWS_CNI_CONFIG_DIR="${WINDOWS_K8S_DIR}\cni\config"
# CNI storage path for Windows nodes
export WINDOWS_CNI_STORAGE_PATH="https://storage.googleapis.com/k8s-artifacts-cni/release"
# CNI version for Windows nodes
export WINDOWS_CNI_VERSION="v1.4.0"
export WINDOWS_CNI_VERSION="v1.4.1"
# Pod manifests directory for Windows nodes on Windows nodes.
export WINDOWS_MANIFESTS_DIR="${WINDOWS_K8S_DIR}\manifests"
# Directory where cert/key files will be stores on Windows nodes.
Expand Down
4 changes: 2 additions & 2 deletions cluster/gce/gci/configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ set -o nounset
set -o pipefail

### Hardcoded constants
DEFAULT_CNI_VERSION='v1.4.0'
DEFAULT_CNI_HASH='993cf3284c6ffe5d803692de033d17941cffad8e58a1d8b8a41bba850eaf51a90c8a590b3e61c428a350aae39bcf77ec3901a64a71f6767e8e82c262671362c0'
DEFAULT_CNI_VERSION='v1.4.1'
DEFAULT_CNI_HASH='5cff10005288a78b484bbabbaa24669d62a6eedb6cc7c7604b2c1ea14b65e90a1b022c2a2975d7764ec41f24707f6349432e8f11564d03cea0da141195b0602e'
DEFAULT_NPD_VERSION='v0.8.16'
DEFAULT_NPD_HASH_AMD64='6d7c9a8e07d95085ef949373e2019df67b2c717aa3b8043eb7c63ac6a679e7894b0f6efea98354f0059001a35966353220613936ace499ad97b96b7c04f693d8'
DEFAULT_NPD_HASH_ARM64='8c6a61a92e846b2b6c844bac51f34fd90a97fe7109bc3d16520370b944b9a2d1b117c0d1d95464f374354700f4697baaa41265d44e233996b63ef4e5ae450b24'
Expand Down
2 changes: 1 addition & 1 deletion hack/local-up-cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ LIMITED_SWAP=${LIMITED_SWAP:-""}

# required for cni installation
CNI_CONFIG_DIR=${CNI_CONFIG_DIR:-/etc/cni/net.d}
CNI_PLUGINS_VERSION=${CNI_PLUGINS_VERSION:-"v1.4.0"}
CNI_PLUGINS_VERSION=${CNI_PLUGINS_VERSION:-"v1.4.1"}
# The arch of the CNI binary, if not set, will be fetched based on the value of `uname -m`
CNI_TARGETARCH=${CNI_TARGETARCH:-""}
CNI_PLUGINS_URL="https://github.com/containernetworking/plugins/releases/download"
Expand Down
2 changes: 1 addition & 1 deletion test/e2e_node/remote/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
// utils.go contains functions used across test suites.

const (
cniVersion = "v1.4.0"
cniVersion = "v1.4.1"
cniDirectory = "cni/bin" // The CNI tarball places binaries under directory under "cni/bin".
cniConfDirectory = "cni/net.d"

Expand Down

0 comments on commit 0c55f74

Please sign in to comment.