8cadff2b79
* CNI: bump to 1.0.1 This commit bumps the declared version of CNI in the Kilo manifests to 1.0.1. This is possible with no changes to the configuration lists because our simple configuration is not affected by any of the deprecations, and there was effectively no change between 0.4.0 and 1.0.0, other than the declaration of a stable API. Similarly, this commit also bumps the version of the CNI library and the plugins package. Bumping to CNI 1.0.0 will help ensure that Kilo stays compatible with container runtimes in the future. Signed-off-by: Lucas Servén Marín <lserven@gmail.com> * vendor: revendor Signed-off-by: Lucas Servén Marín <lserven@gmail.com>
87 lines
3.9 KiB
Modula-2
87 lines
3.9 KiB
Modula-2
module github.com/squat/kilo
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/awalterschulze/gographviz v0.0.0-20181013152038-b2885df04310
|
|
github.com/campoy/embedmd v1.0.0
|
|
github.com/containernetworking/cni v1.0.1
|
|
github.com/containernetworking/plugins v1.1.1
|
|
github.com/coreos/go-iptables v0.6.0
|
|
github.com/go-kit/kit v0.9.0
|
|
github.com/kylelemons/godebug v0.0.0-20170820004349-d65d576e9348
|
|
github.com/oklog/run v1.1.0
|
|
github.com/prometheus/client_golang v1.11.0
|
|
github.com/spf13/cobra v1.1.3
|
|
github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5
|
|
golang.org/x/lint v0.0.0-20200302205851-738671d3881b
|
|
golang.org/x/sys v0.0.0-20211124211545-fe61309f8881
|
|
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20211124212657-dd7407c86d22
|
|
k8s.io/api v0.21.1
|
|
k8s.io/apiextensions-apiserver v0.21.1
|
|
k8s.io/apimachinery v0.21.1
|
|
k8s.io/client-go v0.21.1
|
|
k8s.io/code-generator v0.21.1
|
|
sigs.k8s.io/controller-tools v0.6.0
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.1 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/evanphx/json-patch v4.9.0+incompatible // indirect
|
|
github.com/fatih/color v1.12.0 // indirect
|
|
github.com/go-logfmt/logfmt v0.5.0 // indirect
|
|
github.com/go-logr/logr v0.4.0 // indirect
|
|
github.com/gobuffalo/flect v0.2.2 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/go-cmp v0.5.6 // indirect
|
|
github.com/google/gofuzz v1.1.0 // indirect
|
|
github.com/google/uuid v1.2.0 // indirect
|
|
github.com/googleapis/gnostic v0.4.1 // indirect
|
|
github.com/hashicorp/golang-lru v0.5.1 // indirect
|
|
github.com/imdario/mergo v0.3.11 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/josharian/native v0.0.0-20200817173448-b6b71def0850 // indirect
|
|
github.com/json-iterator/go v1.1.11 // indirect
|
|
github.com/mattn/go-colorable v0.1.8 // indirect
|
|
github.com/mattn/go-isatty v0.0.12 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
|
|
github.com/mdlayher/genetlink v1.0.0 // indirect
|
|
github.com/mdlayher/netlink v1.4.1 // indirect
|
|
github.com/mdlayher/socket v0.0.0-20211102153432-57e3fa563ecb // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.1 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
|
github.com/prometheus/common v0.26.0 // indirect
|
|
github.com/prometheus/procfs v0.6.0 // indirect
|
|
github.com/safchain/ethtool v0.0.0-20210803160452-9aa261dae9b1 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/stretchr/testify v1.7.0 // indirect
|
|
github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f // indirect
|
|
golang.org/x/crypto v0.0.0-20211117183948-ae814b36b871 // indirect
|
|
golang.org/x/mod v0.4.2 // indirect
|
|
golang.org/x/net v0.0.0-20211123203042-d83791d6bcd9 // indirect
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect
|
|
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
|
|
golang.org/x/text v0.3.6 // indirect
|
|
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
|
|
golang.org/x/tools v0.1.4 // indirect
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
golang.zx2c4.com/wireguard v0.0.0-20211123210315-387f7c461a16 // indirect
|
|
google.golang.org/appengine v1.6.5 // indirect
|
|
google.golang.org/protobuf v1.26.0 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
k8s.io/gengo v0.0.0-20201214224949-b6c5ce23f027 // indirect
|
|
k8s.io/klog/v2 v2.8.0 // indirect
|
|
k8s.io/kube-openapi v0.0.0-20210305001622-591a79e4bda7 // indirect
|
|
k8s.io/utils v0.0.0-20201110183641-67b214c5f920 // indirect
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.1.0 // indirect
|
|
sigs.k8s.io/yaml v1.2.0 // indirect
|
|
)
|