-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from maiqueb/release-v0.10.0
Release v0.10.0
- Loading branch information
Showing
2 changed files
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
v0.9.0 | ||
Release a macvtap-cni whose device-plugin implementation | ||
works for Kubernetes-1.25. | ||
v0.10.0 | ||
Version v0.9.0 unfortunately broke the device-plugin registration for k8s-1.25 | ||
instead of fixing it. | ||
This new version actually fixes the device-plugin registration order, and also | ||
fixes a nil pointer that was causing the macvtap-cni pods to crash-loop. | ||
|
||
Features: | ||
* build, vendor: bump to k8s-1.24 | ||
Bugs: | ||
* device-plugin, k8s-1.25: consume 1.19.3 | ||
* build: address dependabots concerns in the gopkg.in/yaml.v3 module | ||
* device plugin: fix registration order for k8s-1.25 | ||
* Fix nil pointer error for k8s 1.25 | ||
``` | ||
docker pull quay.io/kubevirt/macvtap-cni:v0.9.0 | ||
docker pull quay.io/kubevirt/macvtap-cni:v0.10.0 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
package version | ||
|
||
var ( | ||
Version = "0.9.0" | ||
Version = "0.10.0" | ||
) |