Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CNI plugins to v1.2.0 #2863

Merged
merged 1 commit into from
Jan 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies:

# CNI plugins
- name: "CNI plugins"
version: 1.1.1
version: 1.2.0
refPaths:
- path: packages/deb/build.go
match: currentCNIVersion\s+= "\d+\.\d+.\d+"
Expand Down
2 changes: 1 addition & 1 deletion packages/deb/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const (
ChannelUnstable ChannelType = "unstable"
ChannelNightly ChannelType = "nightly"

currentCNIVersion = "1.1.1"
currentCNIVersion = "1.2.0"
criToolsVersion = "1.26.0"
pre180kubeadmconf = "pre-1.8/10-kubeadm.conf"
pre1110kubeadmconf = "post-1.8/10-kubeadm.conf"
Expand Down
5 changes: 4 additions & 1 deletion packages/rpm/kubelet.spec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
%define semver() (%1 * 256 * 256 + %2 * 256 + %3)
%global KUBE_SEMVER %{semver %{KUBE_MAJOR} %{KUBE_MINOR} %{KUBE_PATCH}}

%global CNI_VERSION 1.1.1
%global CNI_VERSION 1.2.0
%global CRI_TOOLS_VERSION 1.26.0

Name: kubelet
Expand Down Expand Up @@ -157,6 +157,9 @@ mv cni-plugins/* %{buildroot}/opt/cni/bin/


%changelog
* Tue Jan 17 2023 Sascha Grunert <[email protected]> - 1.26.0
- Update CNI plugins to v1.2.0

* Thu Dec 14 2022 Sascha Grunert <[email protected]> - 1.26.0
- Update cri-tools to v1.26.0

Expand Down
2 changes: 1 addition & 1 deletion pkg/kubepkg/kubepkg.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const (
ChannelNightly ChannelType = "nightly"

minimumKubernetesVersion = "1.13.0"
CurrentCNIVersion = "1.1.1"
CurrentCNIVersion = "1.2.0"
MinimumCNIVersion = "0.8.6"

kubeadmConf = "10-kubeadm.conf"
Expand Down