update Go to version 1.19 (#1892)
Showing
+101 -1895
module github.com/kubeovn/kube-ovn | ||
go 1.18 | ||
go 1.19 | ||
require ( | ||
github.com/Mellanox/sriovnet v1.1.0 | ||
... | ... | @@ -16,31 +16,31 @@ require ( |
github.com/coreos/go-iptables v0.6.0 | ||
github.com/emicklei/go-restful/v3 v3.9.0 | ||
github.com/go-logr/stdr v1.2.2 | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/greenpau/ovsdb v1.0.2 | ||
github.com/k8snetworkplumbingwg/network-attachment-definition-client v1.3.0 | ||
github.com/mdlayher/arp v0.0.0-20220512170110-6706a2966875 | ||
github.com/moby/sys/mountinfo v0.6.0 | ||
github.com/moby/sys/mountinfo v0.6.2 | ||
github.com/neverlee/keymutex v0.0.0-20171121013845-f593aa834bf9 | ||
github.com/oilbeater/go-ping v0.0.0-20200413021620-332b7197c5b5 | ||
github.com/onsi/ginkgo/v2 v2.1.5 | ||
github.com/onsi/gomega v1.20.1 | ||
github.com/osrg/gobgp v0.0.0-20190401195721-805d02fdfbc5 | ||
github.com/ovn-org/libovsdb v0.0.0-20220826133223-e4d2d8648be7 | ||
github.com/onsi/ginkgo/v2 v2.1.6 | ||
github.com/onsi/gomega v1.20.2 | ||
github.com/osrg/gobgp/v3 v3.6.0 | ||
github.com/ovn-org/libovsdb v0.0.0-20220901025242-999ca1972a3a | ||
github.com/parnurzeal/gorequest v0.2.16 | ||
github.com/prometheus/client_golang v1.13.0 | ||
github.com/sirupsen/logrus v1.9.0 | ||
github.com/spf13/pflag v1.0.5 | ||
github.com/stretchr/testify v1.8.0 | ||
github.com/vishvananda/netlink v1.2.1-beta.2 | ||
golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 | ||
golang.org/x/sys v0.0.0-20220907062415-87db552b00fd | ||
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 | ||
google.golang.org/grpc v1.49.0 | ||
google.golang.org/protobuf v1.28.1 | ||
gopkg.in/k8snetworkplumbingwg/multus-cni.v3 v3.9.1 | ||
k8s.io/api v0.24.4 | ||
k8s.io/apimachinery v0.24.4 | ||
k8s.io/client-go v12.0.0+incompatible | ||
k8s.io/klog/v2 v2.70.1 | ||
k8s.io/klog/v2 v2.80.0 | ||
k8s.io/kubernetes v1.24.4 | ||
k8s.io/sample-controller v0.24.4 | ||
kubevirt.io/client-go v0.56.0 | ||
... | ... | @@ -48,7 +48,6 @@ require ( |
) | ||
require ( | ||
github.com/armon/go-radix v1.0.0 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/buger/jsonparser v1.1.1 // indirect | ||
github.com/cenkalti/hub v1.0.1 // indirect | ||
... | ... | @@ -76,6 +75,7 @@ require ( |
github.com/golang/glog v1.0.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/mock v1.6.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/gnostic v0.6.9 // indirect | ||
github.com/google/go-cmp v0.5.8 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
... | ... | @@ -88,6 +88,7 @@ require ( |
github.com/josharian/native v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/juju/errors v1.0.0 // indirect | ||
github.com/k-sone/critbitgo v1.4.0 // indirect | ||
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect | ||
github.com/kelseyhightower/envconfig v1.4.0 // indirect | ||
github.com/kubernetes-csi/external-snapshotter/client/v4 v4.2.0 // indirect | ||
... | ... | @@ -107,7 +108,7 @@ require ( |
github.com/openshift/custom-resource-status v1.1.2 // indirect | ||
github.com/pborman/uuid v1.2.1 // indirect | ||
github.com/pelletier/go-toml v1.9.5 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.2 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.5 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/projectcalico/go-json v0.0.0-20161128004156-6219dc7339ba // indirect | ||
... | ... | @@ -117,25 +118,23 @@ require ( |
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.37.0 // indirect | ||
github.com/prometheus/procfs v0.8.0 // indirect | ||
github.com/satori/go.uuid v1.2.1-0.20181028125025-b2ce2384e17b // indirect | ||
github.com/spf13/afero v1.9.2 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/viper v1.12.0 // indirect | ||
github.com/subosito/gotenv v1.4.0 // indirect | ||
github.com/spf13/viper v1.13.0 // indirect | ||
github.com/subosito/gotenv v1.4.1 // indirect | ||
github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
golang.org/x/net v0.0.0-20220822230855-b0a4917ee28c // indirect | ||
golang.org/x/net v0.0.0-20220906165146-f3363e06e74c // indirect | ||
golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094 // indirect | ||
golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde // indirect | ||
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
google.golang.org/genproto v0.0.0-20220902135211-223410557253 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/ini.v1 v1.66.6 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
... | ... | @@ -144,7 +143,7 @@ require ( |
k8s.io/component-base v0.24.4 // indirect | ||
k8s.io/component-helpers v0.24.4 // indirect | ||
k8s.io/kube-openapi v0.0.0-20220803164354-a70c9af30aea // indirect | ||
k8s.io/kube-proxy v0.0.0 // indirect | ||
k8s.io/kube-proxy v0.24.4 // indirect | ||
k8s.io/utils v0.0.0-20220823124924-e9cbc92d1a73 // indirect | ||
kubevirt.io/api v0.56.0 // indirect | ||
kubevirt.io/containerized-data-importer-api v1.54.0 // indirect | ||
... | ... | @@ -159,7 +158,7 @@ replace ( |
github.com/alauda/felix => github.com/kubeovn/felix v0.0.0-20220325073257-c8a0f705d139 | ||
github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.2 | ||
github.com/greenpau/ovsdb => github.com/alauda/ovsdb v0.0.0-20210113100339-040cf3e76c28 | ||
github.com/openshift/api => github.com/openshift/api v0.0.0-20210428205234-a8389931bee7 | ||
github.com/openshift/api => github.com/openshift/api v0.0.0-20210105115604-44119421ec6b | ||
github.com/openshift/client-go => github.com/openshift/client-go v0.0.0-20210112165513-ebc401615f47 | ||
github.com/openshift/library-go => github.com/mhenriks/library-go v0.0.0-20210511195009-51ba86622560 | ||
gopkg.in/k8snetworkplumbingwg/multus-cni.v3 => github.com/k8snetworkplumbingwg/multus-cni v0.0.0-20220818150730-3d9cec4ec9d5 | ||
... | ... |
This diff is collapsed.
pkg/ovs/ovn-nb-logical_switch.go
deleted
100644 → 0
pkg/speaker/bgpapiutil/attribute.go
deleted
100644 → 0
This diff is collapsed.
pkg/speaker/bgpapiutil/capability.go
deleted
100644 → 0
pkg/speaker/bgpapiutil/util.go
deleted
100644 → 0
Please register or sign in to comment