
This tag of hcsshim brings in a couple welcome features/improvements. One being exposing a way to query for hns endpoint statistics (Packets received/sent etc.). This tag also contains some optimizations for querying whether a certain HCN feature is supported, which is a common workflow in kube-proxy on Windows. The first result from querying HCN is now cached so further calls can skip the hcn query as well as the version range parsing that was performed. This also gets rid of some redundant logs that used to hit everytime the version range parsing occurred. The Go-winio dep bump, and all of the ctrd deps are transitive only. Nothing new is needed/intended to be used. Signed-off-by: Daniel Canter <dcanter@microsoft.com>
31 lines
997 B
Modula-2
31 lines
997 B
Modula-2
module github.com/Microsoft/hcsshim
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/Microsoft/go-winio v0.4.17
|
|
github.com/containerd/cgroups v1.0.1
|
|
github.com/containerd/console v1.0.2
|
|
github.com/containerd/containerd v1.4.9
|
|
github.com/containerd/continuity v0.1.0 // indirect
|
|
github.com/containerd/fifo v1.0.0 // indirect
|
|
github.com/containerd/go-runc v1.0.0
|
|
github.com/containerd/ttrpc v1.0.2
|
|
github.com/containerd/typeurl v1.0.2
|
|
github.com/gogo/protobuf v1.3.2
|
|
github.com/opencontainers/runtime-spec v1.0.3-0.20200929063507-e6143ca7d51d
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/sirupsen/logrus v1.7.0
|
|
github.com/urfave/cli v1.22.2
|
|
go.opencensus.io v0.22.3
|
|
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a
|
|
golang.org/x/sys v0.0.0-20210324051608-47abb6519492
|
|
google.golang.org/grpc v1.33.2
|
|
gotest.tools/v3 v3.0.3 // indirect
|
|
)
|
|
|
|
replace (
|
|
google.golang.org/genproto => google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63
|
|
google.golang.org/grpc => google.golang.org/grpc v1.27.1
|
|
)
|