diff options
| author | linxin <[email protected]> | 2023-03-10 17:38:36 +0800 |
|---|---|---|
| committer | linxin <[email protected]> | 2023-03-10 17:38:36 +0800 |
| commit | 2b3fde6db84cc222dab3c10c5e2f1176091c07e1 (patch) | |
| tree | 5506b0f97def1c4edd618bb0106c900f7571aad4 /go.mod | |
| parent | 8f7b98cbaccc7143fc0056a6138a32eac665a2c1 (diff) | |
k8s 上简单实现deviceplugin demo
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,20 @@ +module deviceplugindemo + +go 1.20 + +require ( + github.com/fsnotify/fsnotify v1.6.0 + github.com/sirupsen/logrus v1.9.0 + golang.org/x/net v0.8.0 + google.golang.org/grpc v1.53.0 + k8s.io/kubelet v0.26.2 +) + +require ( + github.com/gogo/protobuf v1.3.2 // indirect + github.com/golang/protobuf v1.5.2 // indirect + golang.org/x/sys v0.6.0 // indirect + golang.org/x/text v0.8.0 // indirect + google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect + google.golang.org/protobuf v1.28.1 // indirect +) |
