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

feat: add missing cni 0.3.1 support #107

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
feat: add missing cni 0.3.1 support
oscgu committed Sep 2, 2024
commit 989267c04aafb4c5e5b9cf88fead78f0747f7d99
2 changes: 1 addition & 1 deletion cni/cni.go
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ const (
)

// Supported CNI versions.
var VersionsSupported = []string{"0.2.0", "0.3.0", "0.4.0", "1.0.0"}
var VersionsSupported = []string{"0.2.0", "0.3.0", "0.3.1", "0.4.0", "1.0.0"}

type KVP struct {
Name string `json:"name"`