From 5026d1d89b05eac5e004279b742df6745a73d93a Mon Sep 17 00:00:00 2001 From: Ritu Sood Date: Sat, 10 Nov 2018 09:56:52 -0800 Subject: Seed code for the Plugin The code includes ovn4nfvk8s Plugin & CNI. It implements multiple OVN interfaces for Pods and assumes Multus (or similar CNI) calls its CNI not as first CNI. Change-Id: I524c1d18752eb6dbc8d34addd3b60d5bbaa06ff4 Signed-off-by: Ritu Sood Signed-off-by: Victor Morales --- go.mod | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 go.mod (limited to 'go.mod') diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..251d601 --- /dev/null +++ b/go.mod @@ -0,0 +1,38 @@ +module ovn4nfv-k8s-plugin + +require ( + github.com/containernetworking/cni v0.6.0 + github.com/containernetworking/plugins v0.7.4 + github.com/coreos/go-iptables v0.4.0 // indirect + github.com/gogo/protobuf v1.1.1 // indirect + github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect + github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c // indirect + github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf // indirect + github.com/googleapis/gnostic v0.2.0 // indirect + github.com/gregjones/httpcache v0.0.0-20181110185634-c63ab54fda8f // indirect + github.com/hashicorp/golang-lru v0.5.0 // indirect + github.com/imdario/mergo v0.3.6 // indirect + github.com/json-iterator/go v1.1.5 // indirect + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect + github.com/modern-go/reflect2 v1.0.1 // indirect + github.com/onsi/ginkgo v1.6.0 + github.com/onsi/gomega v1.4.2 + github.com/peterbourgon/diskv v2.0.1+incompatible // indirect + github.com/sirupsen/logrus v1.2.0 + github.com/spf13/pflag v1.0.3 // indirect + github.com/urfave/cli v1.20.0 + github.com/vishvananda/netlink v1.0.0 + github.com/vishvananda/netns v0.0.0-20180720170159-13995c7128cc // indirect + golang.org/x/oauth2 v0.0.0-20181106182150-f42d05182288 // indirect + golang.org/x/time v0.0.0-20181108054448-85acf8d2951c // indirect + gopkg.in/gcfg.v1 v1.2.3 + gopkg.in/inf.v0 v0.9.1 // indirect + gopkg.in/warnings.v0 v0.1.2 // indirect + k8s.io/api v0.0.0-20181117111259-46ad728b8d13 + k8s.io/apimachinery v0.0.0-20181116115711-1b0702fe2927 + k8s.io/client-go v9.0.0+incompatible + k8s.io/klog v0.1.0 // indirect + k8s.io/kube-openapi v0.0.0-20181114233023-0317810137be // indirect + k8s.io/utils v0.0.0-20181115163542-0d26856f57b3 + sigs.k8s.io/yaml v1.1.0 // indirect +) -- cgit 1.2.3-korg