Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame^] | 1 | module source.monogon.dev |
| 2 | |
| 3 | go 1.17 |
| 4 | |
| 5 | // Kubernetes is not fully consumable as a module, fix that |
| 6 | replace ( |
| 7 | k8s.io/api => k8s.io/api v0.23.4 |
| 8 | k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.23.4 |
| 9 | k8s.io/apimachinery => k8s.io/apimachinery v0.23.4 |
| 10 | k8s.io/apiserver => k8s.io/apiserver v0.23.4 |
| 11 | k8s.io/cli-runtime => k8s.io/cli-runtime v0.23.4 |
| 12 | k8s.io/client-go => k8s.io/client-go v0.23.4 |
| 13 | k8s.io/cloud-provider => k8s.io/cloud-provider v0.23.4 |
| 14 | k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.23.4 |
| 15 | k8s.io/code-generator => k8s.io/code-generator v0.23.4 |
| 16 | k8s.io/component-base => k8s.io/component-base v0.23.4 |
| 17 | k8s.io/component-helpers => k8s.io/component-helpers v0.23.4 |
| 18 | k8s.io/controller-manager => k8s.io/controller-manager v0.23.4 |
| 19 | k8s.io/cri-api => k8s.io/cri-api v0.23.4 |
| 20 | k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.23.4 |
| 21 | k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.23.4 |
| 22 | k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.23.4 |
| 23 | k8s.io/kube-proxy => k8s.io/kube-proxy v0.23.4 |
| 24 | k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.23.4 |
| 25 | k8s.io/kubectl => k8s.io/kubectl v0.23.4 |
| 26 | k8s.io/kubelet => k8s.io/kubelet v0.23.4 |
| 27 | k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.23.4 |
| 28 | k8s.io/metrics => k8s.io/metrics v0.23.4 |
| 29 | k8s.io/mount-utils => k8s.io/mount-utils v0.23.4 |
| 30 | k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.23.4 |
| 31 | k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.23.4 |
| 32 | ) |
| 33 | |
| 34 | // Pin down opentelementry |
| 35 | // See https://github.com/open-telemetry/opentelemetry-go/issues/2577 |
| 36 | replace ( |
| 37 | go.opentelemetry.io/contrib => go.opentelemetry.io/contrib v0.20.0 |
| 38 | go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc => go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.20.0 |
| 39 | go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp => go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.20.0 |
| 40 | go.opentelemetry.io/otel => go.opentelemetry.io/otel v0.20.0 |
| 41 | go.opentelemetry.io/otel/exporters/otlp => go.opentelemetry.io/otel/exporters/otlp v0.20.0 |
| 42 | go.opentelemetry.io/otel/metric => go.opentelemetry.io/otel/metric v0.20.0 |
| 43 | go.opentelemetry.io/otel/oteltest => go.opentelemetry.io/otel/oteltest v0.20.0 |
| 44 | go.opentelemetry.io/otel/sdk => go.opentelemetry.io/otel/sdk v0.20.0 |
| 45 | go.opentelemetry.io/otel/sdk/export/metric => go.opentelemetry.io/otel/sdk/export/metric v0.20.0 |
| 46 | go.opentelemetry.io/otel/sdk/metric => go.opentelemetry.io/otel/sdk/metric v0.20.0 |
| 47 | go.opentelemetry.io/otel/trace => go.opentelemetry.io/otel/trace v0.20.0 |
| 48 | go.opentelemetry.io/proto/otlp => go.opentelemetry.io/proto/otlp v0.7.0 |
| 49 | ) |
| 50 | |
| 51 | // Custom pins for semver breakage best resolved by manual resolution |
| 52 | // Breaking change in 1.15.0 at https://github.com/onsi/ginkgo/pull/736 |
| 53 | // K8s still uses 1.12 |
| 54 | replace github.com/onsi/ginkgo => github.com/onsi/ginkgo v1.14.2 |
| 55 | |
| 56 | // Our own patches |
| 57 | replace github.com/containerd/ttrpc => github.com/monogon-dev/ttrpc v1.0.2-0.20210119122237-222b428f008e |
| 58 | |
| 59 | // Override version for Bazel support |
| 60 | replace github.com/mwitkow/go-proto-validators => github.com/mwitkow/go-proto-validators v0.3.2 |
| 61 | |
| 62 | require ( |
| 63 | github.com/adrg/xdg v0.4.0 |
| 64 | github.com/bazelbuild/bazel-gazelle v0.24.0 |
| 65 | github.com/bazelbuild/rules_go v0.30.0 |
| 66 | github.com/cavaliergopher/cpio v1.0.1 |
| 67 | github.com/cenkalti/backoff/v4 v4.1.2 |
| 68 | github.com/container-storage-interface/spec v1.5.0 |
| 69 | github.com/containerd/containerd v1.6.1 |
| 70 | github.com/containernetworking/plugins v1.0.1 |
| 71 | github.com/coredns/coredns v1.9.1 |
| 72 | github.com/corverroos/commentwrap v0.0.0-20191204065359-2926638be44c |
| 73 | github.com/diskfs/go-diskfs v1.2.0 |
| 74 | github.com/go-delve/delve v1.8.2 |
| 75 | github.com/golang/protobuf v1.5.2 |
| 76 | github.com/google/certificate-transparency-go v1.1.2 |
| 77 | github.com/google/go-cmp v0.5.7 |
| 78 | github.com/google/go-tpm v0.3.3 |
| 79 | github.com/google/go-tpm-tools v0.3.5 |
| 80 | github.com/google/gopacket v1.1.19 |
| 81 | github.com/google/nftables v0.0.0-20220221214239-211824995dcb |
| 82 | github.com/google/uuid v1.3.0 |
| 83 | github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 |
| 84 | github.com/insomniacslk/dhcp v0.0.0-20220119180841-3c283ff8b7dd |
| 85 | github.com/joho/godotenv v1.4.0 |
| 86 | github.com/mattn/go-shellwords v1.0.12 |
| 87 | github.com/mdlayher/raw v0.1.0 |
| 88 | github.com/opencontainers/runc v1.1.0 |
| 89 | github.com/pierrec/lz4/v4 v4.1.14 |
| 90 | github.com/pkg/errors v0.9.1 |
| 91 | github.com/rekby/gpt v0.0.0-20200614112001-7da10aec5566 |
| 92 | github.com/sbezverk/nfproxy v0.0.0-20210112155058-0d98b4a69f0c |
| 93 | github.com/spf13/cobra v1.4.0 |
| 94 | github.com/spf13/pflag v1.0.5 |
| 95 | github.com/stretchr/testify v1.7.0 |
| 96 | github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 |
| 97 | github.com/yalue/native_endian v1.0.2 |
| 98 | go.etcd.io/etcd/api/v3 v3.5.2 |
| 99 | go.etcd.io/etcd/client/pkg/v3 v3.5.2 |
| 100 | go.etcd.io/etcd/client/v3 v3.5.2 |
| 101 | go.etcd.io/etcd/server/v3 v3.5.2 |
| 102 | go.etcd.io/etcd/tests/v3 v3.5.2 |
| 103 | go.uber.org/multierr v1.8.0 |
| 104 | golang.org/x/crypto v0.0.0-20220208050332-20e1d8d225ab |
| 105 | golang.org/x/mod v0.5.1 |
| 106 | golang.org/x/net v0.0.0-20220225172249-27dd8689420f |
| 107 | golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 |
| 108 | golang.org/x/text v0.3.7 |
| 109 | golang.org/x/tools v0.1.9 |
| 110 | golang.zx2c4.com/wireguard/wgctrl v0.0.0-20220208144051-fde48d68ee68 |
| 111 | google.golang.org/grpc v1.45.0 |
| 112 | google.golang.org/protobuf v1.27.1 |
| 113 | gvisor.dev/gvisor v0.0.0-20220315202956-f1399ecf1672 |
| 114 | k8s.io/api v0.23.4 |
| 115 | k8s.io/apimachinery v0.23.4 |
| 116 | k8s.io/cli-runtime v0.23.4 |
| 117 | k8s.io/client-go v11.0.0+incompatible |
| 118 | k8s.io/component-base v0.23.4 |
| 119 | k8s.io/kubectl v0.0.0 |
| 120 | k8s.io/kubelet v0.0.0 |
| 121 | k8s.io/kubernetes v1.23.4 |
| 122 | ) |
| 123 | |
| 124 | require ( |
| 125 | cloud.google.com/go/compute v1.3.0 // indirect |
| 126 | github.com/Azure/azure-sdk-for-go v62.1.0+incompatible // indirect |
| 127 | github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect |
| 128 | github.com/Azure/go-autorest v14.2.0+incompatible // indirect |
| 129 | github.com/Azure/go-autorest/autorest v0.11.24 // indirect |
| 130 | github.com/Azure/go-autorest/autorest/adal v0.9.18 // indirect |
| 131 | github.com/Azure/go-autorest/autorest/azure/auth v0.5.11 // indirect |
| 132 | github.com/Azure/go-autorest/autorest/azure/cli v0.4.5 // indirect |
| 133 | github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect |
| 134 | github.com/Azure/go-autorest/autorest/mocks v0.4.1 // indirect |
| 135 | github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect |
| 136 | github.com/Azure/go-autorest/autorest/validation v0.1.0 // indirect |
| 137 | github.com/Azure/go-autorest/logger v0.2.1 // indirect |
| 138 | github.com/Azure/go-autorest/tracing v0.6.0 // indirect |
| 139 | github.com/DataDog/datadog-agent/pkg/obfuscate v0.0.0-20211129110424-6491aa3bf583 // indirect |
| 140 | github.com/DataDog/datadog-go v4.8.2+incompatible // indirect |
| 141 | github.com/DataDog/datadog-go/v5 v5.0.2 // indirect |
| 142 | github.com/DataDog/sketches-go v1.0.0 // indirect |
| 143 | github.com/GoogleCloudPlatform/k8s-cloud-provider v1.16.1-0.20210702024009-ea6160c1d0e3 // indirect |
| 144 | github.com/JeffAshton/win_pdh v0.0.0-20161109143554-76bb4ee9f0ab // indirect |
| 145 | github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd // indirect |
| 146 | github.com/Microsoft/go-winio v0.5.1 // indirect |
| 147 | github.com/Microsoft/hcsshim v0.9.2 // indirect |
| 148 | github.com/NYTimes/gziphandler v1.1.1 // indirect |
| 149 | github.com/PuerkitoBio/purell v1.1.1 // indirect |
| 150 | github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect |
| 151 | github.com/alexflint/go-filemutex v1.1.0 // indirect |
| 152 | github.com/antlr/antlr4/runtime/Go/antlr v0.0.0-20210826220005-b48c857c3a0e // indirect |
| 153 | github.com/apparentlymart/go-cidr v1.1.0 // indirect |
| 154 | github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e // indirect |
| 155 | github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a // indirect |
| 156 | github.com/aws/aws-sdk-go v1.43.12 // indirect |
| 157 | github.com/beorn7/perks v1.0.1 // indirect |
| 158 | github.com/blang/semver v3.5.1+incompatible // indirect |
| 159 | github.com/cenkalti/backoff v2.2.1+incompatible // indirect |
| 160 | github.com/cespare/xxhash/v2 v2.1.2 // indirect |
| 161 | github.com/chai2010/gettext-go v0.0.0-20160711120539-c6fed771bfd5 // indirect |
| 162 | github.com/checkpoint-restore/go-criu/v5 v5.3.0 // indirect |
| 163 | github.com/cilium/ebpf v0.7.0 // indirect |
| 164 | github.com/clusterhq/flocker-go v0.0.0-20160920122132-2b8b7259d313 // indirect |
| 165 | github.com/containerd/cgroups v1.0.3 // indirect |
| 166 | github.com/containerd/console v1.0.3 // indirect |
| 167 | github.com/containerd/continuity v0.2.2 // indirect |
| 168 | github.com/containerd/fifo v1.0.0 // indirect |
| 169 | github.com/containerd/ttrpc v1.1.0 // indirect |
| 170 | github.com/containerd/typeurl v1.0.2 // indirect |
| 171 | github.com/containernetworking/cni v1.0.1 // indirect |
| 172 | github.com/coredns/caddy v1.1.1 // indirect |
| 173 | github.com/coreos/go-iptables v0.6.0 // indirect |
| 174 | github.com/coreos/go-oidc v2.1.0+incompatible // indirect |
| 175 | github.com/coreos/go-semver v0.3.0 // indirect |
| 176 | github.com/coreos/go-systemd/v22 v22.3.2 // indirect |
| 177 | github.com/cosiner/argv v0.1.0 // indirect |
| 178 | github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect |
| 179 | github.com/creack/pty v1.1.11 // indirect |
| 180 | github.com/cyphar/filepath-securejoin v0.2.3 // indirect |
| 181 | github.com/davecgh/go-spew v1.1.1 // indirect |
| 182 | github.com/daviddengcn/go-colortext v0.0.0-20160507010035-511bcaf42ccd // indirect |
| 183 | github.com/derekparker/trie v0.0.0-20200317170641-1fdf38b7b0e9 // indirect |
| 184 | github.com/dgraph-io/ristretto v0.1.0 // indirect |
| 185 | github.com/dimchansky/utfbom v1.1.1 // indirect |
| 186 | github.com/dnstap/golang-dnstap v0.4.0 // indirect |
| 187 | github.com/docker/distribution v2.8.0+incompatible // indirect |
| 188 | github.com/docker/docker v20.10.12+incompatible // indirect |
| 189 | github.com/docker/go-connections v0.4.0 // indirect |
| 190 | github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect |
| 191 | github.com/docker/go-units v0.4.0 // indirect |
| 192 | github.com/dustin/go-humanize v1.0.0 // indirect |
| 193 | github.com/emicklei/go-restful v2.9.5+incompatible // indirect |
| 194 | github.com/euank/go-kmsg-parser v2.0.0+incompatible // indirect |
| 195 | github.com/evanphx/json-patch v4.12.0+incompatible // indirect |
| 196 | github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect |
| 197 | github.com/farsightsec/golang-framestream v0.3.0 // indirect |
| 198 | github.com/fatih/camelcase v1.0.0 // indirect |
| 199 | github.com/felixge/httpsnoop v1.0.1 // indirect |
| 200 | github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 // indirect |
| 201 | github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect |
| 202 | github.com/fsnotify/fsnotify v1.5.1 // indirect |
| 203 | github.com/fvbommel/sortorder v1.0.1 // indirect |
| 204 | github.com/go-delve/liner v1.2.2-1 // indirect |
| 205 | github.com/go-errors/errors v1.0.1 // indirect |
| 206 | github.com/go-logr/logr v1.2.2 // indirect |
| 207 | github.com/go-openapi/jsonpointer v0.19.5 // indirect |
| 208 | github.com/go-openapi/jsonreference v0.19.5 // indirect |
| 209 | github.com/go-openapi/swag v0.19.14 // indirect |
| 210 | github.com/go-ozzo/ozzo-validation v3.5.0+incompatible // indirect |
| 211 | github.com/godbus/dbus/v5 v5.0.6 // indirect |
| 212 | github.com/gofrs/flock v0.8.0 // indirect |
| 213 | github.com/gofrs/uuid v4.0.0+incompatible // indirect |
| 214 | github.com/gogo/googleapis v1.4.0 // indirect |
| 215 | github.com/gogo/protobuf v1.3.2 // indirect |
| 216 | github.com/golang-jwt/jwt/v4 v4.2.0 // indirect |
| 217 | github.com/golang/glog v1.0.0 // indirect |
| 218 | github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect |
| 219 | github.com/golang/mock v1.6.0 // indirect |
| 220 | github.com/google/btree v1.0.1 // indirect |
| 221 | github.com/google/cadvisor v0.44.0 // indirect |
| 222 | github.com/google/cel-go v0.9.0 // indirect |
| 223 | github.com/google/go-dap v0.6.0 // indirect |
| 224 | github.com/google/gofuzz v1.2.0 // indirect |
| 225 | github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect |
| 226 | github.com/google/subcommands v1.0.2-0.20190508160503-636abe8753b8 // indirect |
| 227 | github.com/googleapis/gax-go/v2 v2.1.1 // indirect |
| 228 | github.com/googleapis/gnostic v0.5.5 // indirect |
| 229 | github.com/gophercloud/gophercloud v0.1.0 // indirect |
| 230 | github.com/gorilla/websocket v1.4.2 // indirect |
| 231 | github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect |
| 232 | github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect |
| 233 | github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect |
| 234 | github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect |
| 235 | github.com/hashicorp/golang-lru v0.5.4 // indirect |
| 236 | github.com/heketi/heketi v10.3.0+incompatible // indirect |
| 237 | github.com/imdario/mergo v0.3.12 // indirect |
| 238 | github.com/inconshreveable/mousetrap v1.0.0 // indirect |
| 239 | github.com/infobloxopen/go-trees v0.0.0-20200715205103-96a057b8dfb9 // indirect |
| 240 | github.com/j-keck/arping v1.0.2 // indirect |
| 241 | github.com/jmespath/go-jmespath v0.4.0 // indirect |
| 242 | github.com/jonboulle/clockwork v0.2.2 // indirect |
| 243 | github.com/josharian/intern v1.0.0 // indirect |
| 244 | github.com/josharian/native v1.0.0 // indirect |
| 245 | github.com/json-iterator/go v1.1.12 // indirect |
| 246 | github.com/karrick/godirwalk v1.16.1 // indirect |
| 247 | github.com/klauspost/compress v1.13.6 // indirect |
| 248 | github.com/kr/pty v1.1.8 // indirect |
| 249 | github.com/libopenstorage/openstorage v1.0.0 // indirect |
| 250 | github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect |
| 251 | github.com/lithammer/dedent v1.1.0 // indirect |
| 252 | github.com/mailru/easyjson v0.7.7 // indirect |
| 253 | github.com/mattn/go-colorable v0.1.4 // indirect |
| 254 | github.com/mattn/go-isatty v0.0.11 // indirect |
| 255 | github.com/mattn/go-runewidth v0.0.13 // indirect |
| 256 | github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect |
| 257 | github.com/mdlayher/genetlink v1.2.0 // indirect |
| 258 | github.com/mdlayher/netlink v1.6.0 // indirect |
| 259 | github.com/mdlayher/packet v0.0.0-20220221164757-67998ac0ff93 // indirect |
| 260 | github.com/mdlayher/socket v0.2.1 // indirect |
| 261 | github.com/miekg/dns v1.1.46 // indirect |
| 262 | github.com/mindprince/gonvml v0.0.0-20190828220739-9ebdce4bb989 // indirect |
| 263 | github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible // indirect |
| 264 | github.com/mitchellh/go-homedir v1.1.0 // indirect |
| 265 | github.com/mitchellh/go-wordwrap v1.0.0 // indirect |
| 266 | github.com/mitchellh/mapstructure v1.4.1 // indirect |
| 267 | github.com/moby/locker v1.0.1 // indirect |
| 268 | github.com/moby/spdystream v0.2.0 // indirect |
| 269 | github.com/moby/sys/mountinfo v0.5.0 // indirect |
| 270 | github.com/moby/sys/signal v0.6.0 // indirect |
| 271 | github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect |
| 272 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| 273 | github.com/modern-go/reflect2 v1.0.2 // indirect |
| 274 | github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect |
| 275 | github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect |
| 276 | github.com/morikuni/aec v1.0.0 // indirect |
| 277 | github.com/mrunalp/fileutils v0.5.0 // indirect |
| 278 | github.com/muesli/reflow v0.0.0-20191128061954-86f094cbed14 // indirect |
| 279 | github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect |
| 280 | github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect |
| 281 | github.com/opencontainers/go-digest v1.0.0 // indirect |
| 282 | github.com/opencontainers/image-spec v1.0.2 // indirect |
| 283 | github.com/opencontainers/runtime-spec v1.0.3-0.20211123151946-c2389c3cb60a // indirect |
| 284 | github.com/opencontainers/selinux v1.10.0 // indirect |
| 285 | github.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492 // indirect |
| 286 | github.com/opentracing/opentracing-go v1.2.0 // indirect |
| 287 | github.com/openzipkin-contrib/zipkin-go-opentracing v0.4.5 // indirect |
| 288 | github.com/openzipkin/zipkin-go v0.4.0 // indirect |
| 289 | github.com/oschwald/geoip2-golang v1.6.1 // indirect |
| 290 | github.com/oschwald/maxminddb-golang v1.8.0 // indirect |
| 291 | github.com/peterbourgon/diskv v2.0.1+incompatible // indirect |
| 292 | github.com/philhofer/fwd v1.1.1 // indirect |
| 293 | github.com/pierrec/lz4 v2.6.1+incompatible // indirect |
| 294 | github.com/pkg/xattr v0.4.1 // indirect |
| 295 | github.com/pmezard/go-difflib v1.0.0 // indirect |
| 296 | github.com/pquerna/cachecontrol v0.0.0-20171018203845-0dec1b30a021 // indirect |
| 297 | github.com/prometheus/client_golang v1.12.1 // indirect |
| 298 | github.com/prometheus/client_model v0.2.0 // indirect |
| 299 | github.com/prometheus/common v0.32.1 // indirect |
| 300 | github.com/prometheus/procfs v0.7.3 // indirect |
| 301 | github.com/quobyte/api v0.1.8 // indirect |
| 302 | github.com/rivo/uniseg v0.2.0 // indirect |
| 303 | github.com/robfig/cron/v3 v3.0.1 // indirect |
| 304 | github.com/rubiojr/go-vhd v0.0.0-20200706105327-02e210299021 // indirect |
| 305 | github.com/russross/blackfriday v1.5.2 // indirect |
| 306 | github.com/russross/blackfriday/v2 v2.1.0 // indirect |
| 307 | github.com/safchain/ethtool v0.0.0-20210803160452-9aa261dae9b1 // indirect |
| 308 | github.com/sbezverk/nftableslib v0.0.0-20210111145735-b08b2d804e1f // indirect |
| 309 | github.com/seccomp/libseccomp-golang v0.9.2-0.20210429002308-3879420cc921 // indirect |
| 310 | github.com/sirupsen/logrus v1.8.1 // indirect |
| 311 | github.com/soheilhy/cmux v0.1.5 // indirect |
| 312 | github.com/stoewer/go-strcase v1.2.0 // indirect |
| 313 | github.com/storageos/go-api v2.2.0+incompatible // indirect |
| 314 | github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect |
| 315 | github.com/tinylib/msgp v1.1.2 // indirect |
| 316 | github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802 // indirect |
| 317 | github.com/u-root/uio v0.0.0-20210528114334-82958018845c // indirect |
| 318 | github.com/ulikunitz/xz v0.5.7 // indirect |
| 319 | github.com/urfave/cli v1.22.4 // indirect |
| 320 | github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 // indirect |
| 321 | github.com/vmware/govmomi v0.20.3 // indirect |
| 322 | github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect |
| 323 | github.com/xlab/treeprint v0.0.0-20181112141820-a009c3971eca // indirect |
| 324 | go.etcd.io/bbolt v1.3.6 // indirect |
| 325 | go.etcd.io/etcd/client/v2 v2.305.2 // indirect |
| 326 | go.etcd.io/etcd/pkg/v3 v3.5.2 // indirect |
| 327 | go.etcd.io/etcd/raft/v3 v3.5.2 // indirect |
| 328 | go.opencensus.io v0.23.0 // indirect |
| 329 | go.opentelemetry.io/contrib v0.20.0 // indirect |
| 330 | go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.28.0 // indirect |
| 331 | go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.20.0 // indirect |
| 332 | go.opentelemetry.io/otel v1.3.0 // indirect |
| 333 | go.opentelemetry.io/otel/exporters/otlp v0.20.0 // indirect |
| 334 | go.opentelemetry.io/otel/metric v0.20.0 // indirect |
| 335 | go.opentelemetry.io/otel/sdk v1.3.0 // indirect |
| 336 | go.opentelemetry.io/otel/sdk/export/metric v0.20.0 // indirect |
| 337 | go.opentelemetry.io/otel/sdk/metric v0.20.0 // indirect |
| 338 | go.opentelemetry.io/otel/trace v1.3.0 // indirect |
| 339 | go.opentelemetry.io/proto/otlp v0.11.0 // indirect |
| 340 | go.starlark.net v0.0.0-20200821142938-949cc6f4b097 // indirect |
| 341 | go.uber.org/atomic v1.7.0 // indirect |
| 342 | go.uber.org/zap v1.19.0 // indirect |
| 343 | golang.org/x/arch v0.0.0-20190927153633-4e8777c89be4 // indirect |
| 344 | golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect |
| 345 | golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect |
| 346 | golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect |
| 347 | golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 // indirect |
| 348 | golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect |
| 349 | golang.zx2c4.com/wireguard v0.0.0-20220202223031-3b95c81cc178 // indirect |
| 350 | gonum.org/v1/gonum v0.6.2 // indirect |
| 351 | google.golang.org/api v0.70.0 // indirect |
| 352 | google.golang.org/appengine v1.6.7 // indirect |
| 353 | google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c // indirect |
| 354 | gopkg.in/DataDog/dd-trace-go.v1 v1.36.2 // indirect |
| 355 | gopkg.in/djherbis/times.v1 v1.2.0 // indirect |
| 356 | gopkg.in/gcfg.v1 v1.2.3 // indirect |
| 357 | gopkg.in/inf.v0 v0.9.1 // indirect |
| 358 | gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect |
| 359 | gopkg.in/square/go-jose.v2 v2.6.0 // indirect |
| 360 | gopkg.in/warnings.v0 v0.1.2 // indirect |
| 361 | gopkg.in/yaml.v2 v2.4.0 // indirect |
| 362 | gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect |
| 363 | k8s.io/apiextensions-apiserver v0.0.0 // indirect |
| 364 | k8s.io/apiserver v0.23.4 // indirect |
| 365 | k8s.io/cloud-provider v0.23.4 // indirect |
| 366 | k8s.io/cluster-bootstrap v0.0.0 // indirect |
| 367 | k8s.io/component-helpers v0.23.4 // indirect |
| 368 | k8s.io/controller-manager v0.23.4 // indirect |
| 369 | k8s.io/cri-api v0.23.1 // indirect |
| 370 | k8s.io/csi-translation-lib v0.23.4 // indirect |
| 371 | k8s.io/klog v1.0.0 // indirect |
| 372 | k8s.io/klog/v2 v2.40.1 // indirect |
| 373 | k8s.io/kube-aggregator v0.0.0 // indirect |
| 374 | k8s.io/kube-controller-manager v0.0.0 // indirect |
| 375 | k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65 // indirect |
| 376 | k8s.io/kube-scheduler v0.0.0 // indirect |
| 377 | k8s.io/legacy-cloud-providers v0.0.0 // indirect |
| 378 | k8s.io/metrics v0.23.4 // indirect |
| 379 | k8s.io/mount-utils v0.23.4 // indirect |
| 380 | k8s.io/pod-security-admission v0.0.0 // indirect |
| 381 | k8s.io/utils v0.0.0-20211116205334-6203023598ed // indirect |
| 382 | sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.27 // indirect |
| 383 | sigs.k8s.io/json v0.0.0-20211020170558-c049b76a60c6 // indirect |
| 384 | sigs.k8s.io/kustomize/api v0.10.1 // indirect |
| 385 | sigs.k8s.io/kustomize/kustomize/v4 v4.4.1 // indirect |
| 386 | sigs.k8s.io/kustomize/kyaml v0.13.0 // indirect |
| 387 | sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect |
| 388 | sigs.k8s.io/yaml v1.2.0 // indirect |
| 389 | ) |