Skip to content

Commit 8ec7cc4

Browse files
dcbwBrandon Philips
authored and
Brandon Philips
committedMar 19, 2019
build/gci: bump CNI version to 0.7.5
1 parent ede55fd commit 8ec7cc4

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
 

‎build/debian-hyperkube-base/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ARCH?=amd64
2424
CACHEBUST?=1
2525

2626
BASEIMAGE=k8s.gcr.io/debian-base-$(ARCH):0.3.2
27-
CNI_VERSION=v0.6.0
27+
CNI_VERSION=v0.7.5
2828

2929
TEMP_DIR:=$(shell mktemp -d)
3030
CNI_TARBALL=cni-plugins-$(ARCH)-$(CNI_VERSION).tgz

‎build/rpms/kubeadm.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ License: ASL 2.0
55
Summary: Container Cluster Manager - Kubernetes Cluster Bootstrapping Tool
66
Requires: kubelet >= 1.8.0
77
Requires: kubectl >= 1.8.0
8-
Requires: kubernetes-cni >= 0.5.1
8+
Requires: kubernetes-cni >= 0.7.5
99

1010
URL: https://kubernetes.io
1111

‎build/rpms/kubelet.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Summary: Container Cluster Manager - Kubernetes Node Agent
77
URL: https://kubernetes.io
88

99
Requires: iptables >= 1.4.21
10-
Requires: kubernetes-cni >= 0.5.1
10+
Requires: kubernetes-cni >= 0.7.5
1111
Requires: socat
1212
Requires: util-linux
1313
Requires: ethtool

‎cluster/gce/gci/configure.sh

+2-2
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.6.0"
28-
DEFAULT_CNI_SHA1="d595d3ded6499a64e8dac02466e2f5f2ce257c9f"
27+
DEFAULT_CNI_VERSION="v0.7.5"
28+
DEFAULT_CNI_SHA1="52e9d2de8a5f927307d9397308735658ee44ab8d"
2929
DEFAULT_NPD_VERSION="v0.6.0"
3030
DEFAULT_NPD_SHA1="a28e960a21bb74bc0ae09c267b6a340f30e5b3a6"
3131
DEFAULT_CRICTL_VERSION="v1.11.1"

‎test/e2e_node/remote/utils.go

+1-1
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.6.0"
30+
cniVersion = "v0.7.5"
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)
Please sign in to comment.