-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
go.mod: go version to 1.13, kubernetes version to 1.17.10 build.sh: remove GO111MODULE definition run_uts.sh: at first cd into project directory
- Loading branch information
Showing
6 changed files
with
535 additions
and
36 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
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
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,20 +1,45 @@ | ||
module github.com/nokia/danm | ||
|
||
go 1.12 | ||
go 1.13 | ||
|
||
require ( | ||
github.com/apparentlymart/go-cidr v1.0.1 | ||
github.com/containernetworking/cni v0.7.1 | ||
github.com/containernetworking/plugins v0.8.5 | ||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b | ||
github.com/intel/multus-cni v0.0.0-20191029173424-8c76fd62e0e9 | ||
github.com/intel/multus-cni v0.0.0-20200316130803-079c853eba60 | ||
github.com/intel/sriov-cni v2.1.0+incompatible | ||
github.com/j-keck/arping v1.0.0 | ||
github.com/satori/go.uuid v1.2.1-0.20181028125025-b2ce2384e17b | ||
github.com/vishvananda/netlink v1.1.1-0.20200221165523-c79a4b7b4066 | ||
k8s.io/api v0.17.3 | ||
k8s.io/apimachinery v0.17.3 | ||
k8s.io/client-go v0.17.3 | ||
k8s.io/code-generator v0.17.3 | ||
k8s.io/api v0.17.4 | ||
k8s.io/apimachinery v0.17.4 | ||
k8s.io/client-go v0.17.4 | ||
k8s.io/code-generator v0.17.4 | ||
k8s.io/kubernetes v1.14.10 | ||
) | ||
|
||
replace ( | ||
k8s.io/api => k8s.io/api v0.17.4 | ||
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.17.4 | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.17.4 | ||
k8s.io/apiserver => k8s.io/apiserver v0.17.4 | ||
k8s.io/cli-runtime => k8s.io/cli-runtime v0.17.4 | ||
k8s.io/client-go => k8s.io/client-go v0.17.4 | ||
k8s.io/cloud-provider => k8s.io/cloud-provider v0.17.4 | ||
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.17.4 | ||
k8s.io/code-generator => k8s.io/code-generator v0.17.4 | ||
k8s.io/component-base => k8s.io/component-base v0.17.4 | ||
k8s.io/cri-api => k8s.io/cri-api v0.17.4 | ||
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.17.4 | ||
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.17.4 | ||
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.17.4 | ||
k8s.io/kube-proxy => k8s.io/kube-proxy v0.17.4 | ||
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.17.4 | ||
k8s.io/kubectl => k8s.io/kubectl v0.17.4 | ||
k8s.io/kubelet => k8s.io/kubelet v0.17.4 | ||
k8s.io/kubernetes => k8s.io/kubernetes v1.17.4 | ||
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.17.4 | ||
k8s.io/metrics => k8s.io/metrics v0.17.4 | ||
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.17.4 | ||
) |
Oops, something went wrong.