plugins: fix bug where support for CNI version 0.4.0 or 1.0.0 was dropped

Signed-off-by: Casey Callendrello <cdc@redhat.com>
This commit is contained in:
Casey Callendrello
2021-09-06 17:21:13 +02:00
parent 62952ffdac
commit ba48f8a659
5 changed files with 5 additions and 5 deletions

View File

@ -40,7 +40,7 @@ type VRFNetConf struct {
}
func main() {
skel.PluginMain(cmdAdd, cmdCheck, cmdDel, version.PluginSupports("0.3.1", "0.4.0"), bv.BuildString("vrf"))
skel.PluginMain(cmdAdd, cmdCheck, cmdDel, version.VersionsStartingFrom("0.3.1"), bv.BuildString("vrf"))
}
func cmdAdd(args *skel.CmdArgs) error {