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 ( |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 7 | k8s.io/api => k8s.io/api v0.24.2 |
| 8 | k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.24.2 |
| 9 | k8s.io/apimachinery => k8s.io/apimachinery v0.24.2 |
| 10 | k8s.io/apiserver => k8s.io/apiserver v0.24.2 |
| 11 | k8s.io/cli-runtime => k8s.io/cli-runtime v0.24.2 |
| 12 | k8s.io/client-go => k8s.io/client-go v0.24.2 |
| 13 | k8s.io/cloud-provider => k8s.io/cloud-provider v0.24.2 |
| 14 | k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.24.2 |
| 15 | k8s.io/code-generator => k8s.io/code-generator v0.24.2 |
| 16 | k8s.io/component-base => k8s.io/component-base v0.24.2 |
| 17 | k8s.io/component-helpers => k8s.io/component-helpers v0.24.2 |
| 18 | k8s.io/controller-manager => k8s.io/controller-manager v0.24.2 |
| 19 | k8s.io/cri-api => k8s.io/cri-api v0.24.2 |
| 20 | k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.24.2 |
| 21 | k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.24.2 |
| 22 | k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.24.2 |
| 23 | k8s.io/kube-proxy => k8s.io/kube-proxy v0.24.2 |
| 24 | k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.24.2 |
| 25 | k8s.io/kubectl => k8s.io/kubectl v0.24.2 |
| 26 | k8s.io/kubelet => k8s.io/kubelet v0.24.2 |
| 27 | k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.24.2 |
| 28 | k8s.io/metrics => k8s.io/metrics v0.24.2 |
| 29 | k8s.io/mount-utils => k8s.io/mount-utils v0.24.2 |
| 30 | k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.24.2 |
| 31 | k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.24.2 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 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 | |
Leopold | be326c2 | 2023-01-04 20:42:59 +0100 | [diff] [blame] | 62 | // bazeldnf currently comes with a go-rpmutils patch |
| 63 | replace github.com/sassoftware/go-rpmutils v0.1.1 => github.com/rmohr/go-rpmutils v0.1.2-0.20201215123907-5acf7436c00d |
| 64 | |
Mateusz Zalega | f220b29 | 2023-01-31 16:52:53 +0000 | [diff] [blame^] | 65 | // Our psample patches |
| 66 | replace github.com/vishvananda/netlink => github.com/monogon-dev/netlink v0.0.0-20230125113930-88977c3ff4b3 |
| 67 | |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 68 | require ( |
| 69 | github.com/adrg/xdg v0.4.0 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 70 | github.com/bazelbuild/rules_go v0.30.0 |
| 71 | github.com/cavaliergopher/cpio v1.0.1 |
| 72 | github.com/cenkalti/backoff/v4 v4.1.2 |
Serge Bazanski | 1e9d7d8 | 2022-09-15 18:45:44 +0200 | [diff] [blame] | 73 | github.com/cockroachdb/cockroach-go/v2 v2.2.10 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 74 | github.com/container-storage-interface/spec v1.5.0 |
Lorenz Brun | 6107ed1 | 2022-06-28 12:56:28 +0000 | [diff] [blame] | 75 | github.com/containerd/containerd v1.6.6 |
| 76 | github.com/containernetworking/plugins v1.1.1 |
Lorenz Brun | 1104341 | 2022-05-16 14:51:45 +0200 | [diff] [blame] | 77 | github.com/coredns/coredns v1.9.2 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 78 | github.com/corverroos/commentwrap v0.0.0-20191204065359-2926638be44c |
| 79 | github.com/diskfs/go-diskfs v1.2.0 |
| 80 | github.com/go-delve/delve v1.8.2 |
Serge Bazanski | 1e9d7d8 | 2022-09-15 18:45:44 +0200 | [diff] [blame] | 81 | github.com/golang-migrate/migrate/v4 v4.15.2 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 82 | github.com/golang/protobuf v1.5.2 |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 83 | github.com/google/cel-go v0.11.4 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 84 | github.com/google/certificate-transparency-go v1.1.2 |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 85 | github.com/google/go-cmp v0.5.8 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 86 | github.com/google/go-tpm v0.3.3 |
| 87 | github.com/google/go-tpm-tools v0.3.5 |
| 88 | github.com/google/gopacket v1.1.19 |
| 89 | github.com/google/nftables v0.0.0-20220221214239-211824995dcb |
| 90 | github.com/google/uuid v1.3.0 |
Serge Bazanski | a9590fe | 2022-09-13 13:51:41 +0200 | [diff] [blame] | 91 | github.com/improbable-eng/grpc-web v0.15.0 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 92 | github.com/insomniacslk/dhcp v0.0.0-20220119180841-3c283ff8b7dd |
| 93 | github.com/joho/godotenv v1.4.0 |
Serge Bazanski | 1b28e1b | 2022-09-05 18:41:18 +0200 | [diff] [blame] | 94 | github.com/kevinburke/go-bindata v3.23.0+incompatible |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 95 | github.com/kyleconroy/sqlc v1.15.0 |
Serge Bazanski | 1e9d7d8 | 2022-09-15 18:45:44 +0200 | [diff] [blame] | 96 | github.com/lib/pq v1.10.6 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 97 | github.com/mattn/go-shellwords v1.0.12 |
Leopold | d639776 | 2023-01-31 18:16:07 +0100 | [diff] [blame] | 98 | github.com/mdlayher/ethtool v0.0.0-20211028163843-288d040e9d60 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 99 | github.com/mdlayher/raw v0.1.0 |
Lorenz Brun | 6107ed1 | 2022-06-28 12:56:28 +0000 | [diff] [blame] | 100 | github.com/opencontainers/runc v1.1.3 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 101 | github.com/pierrec/lz4/v4 v4.1.14 |
| 102 | github.com/pkg/errors v0.9.1 |
| 103 | github.com/rekby/gpt v0.0.0-20200614112001-7da10aec5566 |
Leopold | be326c2 | 2023-01-04 20:42:59 +0100 | [diff] [blame] | 104 | github.com/rmohr/bazeldnf v0.5.4 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 105 | github.com/sbezverk/nfproxy v0.0.0-20210112155058-0d98b4a69f0c |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 106 | github.com/spf13/cobra v1.5.0 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 107 | github.com/spf13/pflag v1.0.5 |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 108 | github.com/stretchr/testify v1.7.1 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 109 | github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 |
| 110 | github.com/yalue/native_endian v1.0.2 |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 111 | go.etcd.io/etcd/api/v3 v3.5.4 |
| 112 | go.etcd.io/etcd/client/pkg/v3 v3.5.4 |
| 113 | go.etcd.io/etcd/client/v3 v3.5.4 |
Lorenz Brun | b401d63 | 2022-06-28 13:00:02 +0000 | [diff] [blame] | 114 | go.etcd.io/etcd/server/v3 v3.5.4 |
| 115 | go.etcd.io/etcd/tests/v3 v3.5.4 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 116 | go.uber.org/multierr v1.8.0 |
Serge Bazanski | 1e9d7d8 | 2022-09-15 18:45:44 +0200 | [diff] [blame] | 117 | golang.org/x/crypto v0.0.0-20220517005047-85d78b3ac167 |
Serge Bazanski | a9590fe | 2022-09-13 13:51:41 +0200 | [diff] [blame] | 118 | golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 119 | golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4 |
Mateusz Zalega | f220b29 | 2023-01-31 16:52:53 +0000 | [diff] [blame^] | 120 | golang.org/x/sys v0.0.0-20220804214406-8e32c043e418 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 121 | golang.org/x/text v0.3.7 |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 122 | golang.org/x/tools v0.1.10-0.20220218145154-897bd77cd717 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 123 | golang.zx2c4.com/wireguard/wgctrl v0.0.0-20220208144051-fde48d68ee68 |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 124 | google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21 |
| 125 | google.golang.org/grpc v1.46.0 |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 126 | google.golang.org/protobuf v1.28.1 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 127 | gvisor.dev/gvisor v0.0.0-20220315202956-f1399ecf1672 |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 128 | k8s.io/api v0.24.2 |
| 129 | k8s.io/apimachinery v0.24.2 |
| 130 | k8s.io/cli-runtime v0.24.2 |
| 131 | k8s.io/client-go v0.24.2 |
| 132 | k8s.io/component-base v0.24.2 |
Leopold | be326c2 | 2023-01-04 20:42:59 +0100 | [diff] [blame] | 133 | k8s.io/klog v1.0.0 |
Serge Bazanski | a9590fe | 2022-09-13 13:51:41 +0200 | [diff] [blame] | 134 | k8s.io/klog/v2 v2.60.1 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 135 | k8s.io/kubectl v0.0.0 |
| 136 | k8s.io/kubelet v0.0.0 |
Lorenz Brun | 961c7a2 | 2022-07-07 10:51:33 +0000 | [diff] [blame] | 137 | k8s.io/kubernetes v1.24.2 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 138 | ) |
| 139 | |
| 140 | require ( |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 141 | cloud.google.com/go/compute v1.6.1 // indirect |
| 142 | github.com/Azure/azure-sdk-for-go v63.4.0+incompatible // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 143 | github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect |
| 144 | github.com/Azure/go-autorest v14.2.0+incompatible // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 145 | github.com/Azure/go-autorest/autorest v0.11.27 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 146 | github.com/Azure/go-autorest/autorest/adal v0.9.18 // indirect |
| 147 | github.com/Azure/go-autorest/autorest/azure/auth v0.5.11 // indirect |
| 148 | github.com/Azure/go-autorest/autorest/azure/cli v0.4.5 // indirect |
| 149 | github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 150 | github.com/Azure/go-autorest/autorest/mocks v0.4.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 151 | github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect |
| 152 | github.com/Azure/go-autorest/autorest/validation v0.1.0 // indirect |
| 153 | github.com/Azure/go-autorest/logger v0.2.1 // indirect |
| 154 | github.com/Azure/go-autorest/tracing v0.6.0 // indirect |
Leopold | d639776 | 2023-01-31 18:16:07 +0100 | [diff] [blame] | 155 | github.com/BurntSushi/toml v0.4.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 156 | github.com/DataDog/datadog-agent/pkg/obfuscate v0.0.0-20211129110424-6491aa3bf583 // indirect |
| 157 | github.com/DataDog/datadog-go v4.8.2+incompatible // indirect |
| 158 | github.com/DataDog/datadog-go/v5 v5.0.2 // indirect |
| 159 | github.com/DataDog/sketches-go v1.0.0 // indirect |
| 160 | github.com/GoogleCloudPlatform/k8s-cloud-provider v1.16.1-0.20210702024009-ea6160c1d0e3 // indirect |
| 161 | github.com/JeffAshton/win_pdh v0.0.0-20161109143554-76bb4ee9f0ab // indirect |
| 162 | github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd // indirect |
Serge Bazanski | 1e9d7d8 | 2022-09-15 18:45:44 +0200 | [diff] [blame] | 163 | github.com/Microsoft/go-winio v0.5.2 // indirect |
Lorenz Brun | 6107ed1 | 2022-06-28 12:56:28 +0000 | [diff] [blame] | 164 | github.com/Microsoft/hcsshim v0.9.3 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 165 | github.com/NYTimes/gziphandler v1.1.1 // indirect |
| 166 | github.com/PuerkitoBio/purell v1.1.1 // indirect |
| 167 | github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect |
| 168 | github.com/alexflint/go-filemutex v1.1.0 // indirect |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 169 | github.com/antlr/antlr4/runtime/Go/antlr v0.0.0-20220626175859-9abda183db8e // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 170 | github.com/apparentlymart/go-cidr v1.1.0 // indirect |
| 171 | github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e // indirect |
| 172 | github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 173 | github.com/aws/aws-sdk-go v1.44.9 // indirect |
Leopold | be326c2 | 2023-01-04 20:42:59 +0100 | [diff] [blame] | 174 | github.com/bazelbuild/buildtools v0.0.0-20201023142455-8a8e1e724705 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 175 | github.com/beorn7/perks v1.0.1 // indirect |
| 176 | github.com/blang/semver/v4 v4.0.0 // indirect |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 177 | github.com/bytecodealliance/wasmtime-go v0.39.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 178 | github.com/cenkalti/backoff v2.2.1+incompatible // indirect |
| 179 | github.com/cespare/xxhash/v2 v2.1.2 // indirect |
| 180 | github.com/chai2010/gettext-go v0.0.0-20160711120539-c6fed771bfd5 // indirect |
| 181 | github.com/checkpoint-restore/go-criu/v5 v5.3.0 // indirect |
| 182 | github.com/cilium/ebpf v0.7.0 // indirect |
| 183 | github.com/clusterhq/flocker-go v0.0.0-20160920122132-2b8b7259d313 // indirect |
| 184 | github.com/containerd/cgroups v1.0.3 // indirect |
| 185 | github.com/containerd/console v1.0.3 // indirect |
| 186 | github.com/containerd/continuity v0.2.2 // indirect |
| 187 | github.com/containerd/fifo v1.0.0 // indirect |
| 188 | github.com/containerd/ttrpc v1.1.0 // indirect |
| 189 | github.com/containerd/typeurl v1.0.2 // indirect |
Lorenz Brun | 6107ed1 | 2022-06-28 12:56:28 +0000 | [diff] [blame] | 190 | github.com/containernetworking/cni v1.1.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 191 | github.com/coredns/caddy v1.1.1 // indirect |
| 192 | github.com/coreos/go-iptables v0.6.0 // indirect |
| 193 | github.com/coreos/go-oidc v2.1.0+incompatible // indirect |
| 194 | github.com/coreos/go-semver v0.3.0 // indirect |
| 195 | github.com/coreos/go-systemd/v22 v22.3.2 // indirect |
| 196 | github.com/cosiner/argv v0.1.0 // indirect |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 197 | github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 198 | github.com/creack/pty v1.1.11 // indirect |
Leopold | be326c2 | 2023-01-04 20:42:59 +0100 | [diff] [blame] | 199 | github.com/crillab/gophersat v1.3.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 200 | github.com/cyphar/filepath-securejoin v0.2.3 // indirect |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 201 | github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 202 | github.com/davecgh/go-spew v1.1.1 // indirect |
| 203 | github.com/daviddengcn/go-colortext v0.0.0-20160507010035-511bcaf42ccd // indirect |
| 204 | github.com/derekparker/trie v0.0.0-20200317170641-1fdf38b7b0e9 // indirect |
Serge Bazanski | a9590fe | 2022-09-13 13:51:41 +0200 | [diff] [blame] | 205 | github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 206 | github.com/dgraph-io/ristretto v0.1.0 // indirect |
| 207 | github.com/dimchansky/utfbom v1.1.1 // indirect |
| 208 | github.com/dnstap/golang-dnstap v0.4.0 // indirect |
| 209 | github.com/docker/distribution v2.8.1+incompatible // indirect |
| 210 | github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect |
| 211 | github.com/docker/go-units v0.4.0 // indirect |
| 212 | github.com/dustin/go-humanize v1.0.0 // indirect |
| 213 | github.com/emicklei/go-restful v2.9.5+incompatible // indirect |
| 214 | github.com/euank/go-kmsg-parser v2.0.0+incompatible // indirect |
| 215 | github.com/evanphx/json-patch v4.12.0+incompatible // indirect |
| 216 | github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect |
| 217 | github.com/farsightsec/golang-framestream v0.3.0 // indirect |
| 218 | github.com/fatih/camelcase v1.0.0 // indirect |
| 219 | github.com/felixge/httpsnoop v1.0.1 // indirect |
| 220 | github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 // indirect |
Serge Bazanski | 1e9d7d8 | 2022-09-15 18:45:44 +0200 | [diff] [blame] | 221 | github.com/form3tech-oss/jwt-go v3.2.5+incompatible // indirect |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 222 | github.com/fsnotify/fsnotify v1.5.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 223 | github.com/fvbommel/sortorder v1.0.1 // indirect |
| 224 | github.com/go-delve/liner v1.2.2-1 // indirect |
| 225 | github.com/go-errors/errors v1.0.1 // indirect |
| 226 | github.com/go-logr/logr v1.2.2 // indirect |
| 227 | github.com/go-openapi/jsonpointer v0.19.5 // indirect |
| 228 | github.com/go-openapi/jsonreference v0.19.5 // indirect |
| 229 | github.com/go-openapi/swag v0.19.14 // indirect |
| 230 | github.com/go-ozzo/ozzo-validation v3.5.0+incompatible // indirect |
| 231 | github.com/godbus/dbus/v5 v5.0.6 // indirect |
Serge Bazanski | 1e9d7d8 | 2022-09-15 18:45:44 +0200 | [diff] [blame] | 232 | github.com/gofrs/flock v0.8.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 233 | github.com/gofrs/uuid v4.0.0+incompatible // indirect |
| 234 | github.com/gogo/googleapis v1.4.0 // indirect |
| 235 | github.com/gogo/protobuf v1.3.2 // indirect |
| 236 | github.com/golang-jwt/jwt/v4 v4.2.0 // indirect |
| 237 | github.com/golang/glog v1.0.0 // indirect |
| 238 | github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect |
| 239 | github.com/golang/mock v1.6.0 // indirect |
| 240 | github.com/google/btree v1.0.1 // indirect |
| 241 | github.com/google/cadvisor v0.44.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 242 | github.com/google/gnostic v0.5.7-v3refs // indirect |
| 243 | github.com/google/go-dap v0.6.0 // indirect |
| 244 | github.com/google/gofuzz v1.2.0 // indirect |
| 245 | github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect |
| 246 | github.com/google/subcommands v1.0.2-0.20190508160503-636abe8753b8 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 247 | github.com/googleapis/gax-go/v2 v2.3.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 248 | github.com/gophercloud/gophercloud v0.1.0 // indirect |
| 249 | github.com/gorilla/websocket v1.4.2 // indirect |
| 250 | github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect |
| 251 | github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect |
| 252 | github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect |
| 253 | github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect |
| 254 | github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect |
Serge Bazanski | 1e9d7d8 | 2022-09-15 18:45:44 +0200 | [diff] [blame] | 255 | github.com/hashicorp/errwrap v1.1.0 // indirect |
| 256 | github.com/hashicorp/go-multierror v1.1.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 257 | github.com/hashicorp/golang-lru v0.5.4 // indirect |
| 258 | github.com/heketi/heketi v10.3.0+incompatible // indirect |
| 259 | github.com/imdario/mergo v0.3.12 // indirect |
| 260 | github.com/inconshreveable/mousetrap v1.0.0 // indirect |
| 261 | github.com/infobloxopen/go-trees v0.0.0-20200715205103-96a057b8dfb9 // indirect |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 262 | github.com/jinzhu/inflection v1.0.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 263 | github.com/jmespath/go-jmespath v0.4.0 // indirect |
| 264 | github.com/jonboulle/clockwork v0.2.2 // indirect |
| 265 | github.com/josharian/intern v1.0.0 // indirect |
| 266 | github.com/josharian/native v1.0.0 // indirect |
| 267 | github.com/json-iterator/go v1.1.12 // indirect |
| 268 | github.com/karrick/godirwalk v1.16.1 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 269 | github.com/klauspost/compress v1.14.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 270 | github.com/kr/pty v1.1.8 // indirect |
| 271 | github.com/libopenstorage/openstorage v1.0.0 // indirect |
| 272 | github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect |
| 273 | github.com/lithammer/dedent v1.1.0 // indirect |
| 274 | github.com/mailru/easyjson v0.7.7 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 275 | github.com/mattn/go-colorable v0.1.11 // indirect |
| 276 | github.com/mattn/go-isatty v0.0.14 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 277 | github.com/mattn/go-runewidth v0.0.13 // indirect |
| 278 | github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect |
| 279 | github.com/mdlayher/genetlink v1.2.0 // indirect |
| 280 | github.com/mdlayher/netlink v1.6.0 // indirect |
| 281 | github.com/mdlayher/packet v0.0.0-20220221164757-67998ac0ff93 // indirect |
| 282 | github.com/mdlayher/socket v0.2.1 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 283 | github.com/miekg/dns v1.1.48 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 284 | github.com/mindprince/gonvml v0.0.0-20190828220739-9ebdce4bb989 // indirect |
| 285 | github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible // indirect |
| 286 | github.com/mitchellh/go-homedir v1.1.0 // indirect |
| 287 | github.com/mitchellh/go-wordwrap v1.0.0 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 288 | github.com/mitchellh/mapstructure v1.4.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 289 | github.com/moby/locker v1.0.1 // indirect |
| 290 | github.com/moby/spdystream v0.2.0 // indirect |
| 291 | github.com/moby/sys/mountinfo v0.6.0 // indirect |
| 292 | github.com/moby/sys/signal v0.6.0 // indirect |
| 293 | github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect |
| 294 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| 295 | github.com/modern-go/reflect2 v1.0.2 // indirect |
| 296 | github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect |
| 297 | github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect |
| 298 | github.com/mrunalp/fileutils v0.5.0 // indirect |
| 299 | github.com/muesli/reflow v0.0.0-20191128061954-86f094cbed14 // indirect |
| 300 | github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect |
| 301 | github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect |
| 302 | github.com/opencontainers/go-digest v1.0.0 // indirect |
Lorenz Brun | 6107ed1 | 2022-06-28 12:56:28 +0000 | [diff] [blame] | 303 | github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 304 | github.com/opencontainers/runtime-spec v1.0.3-0.20211123151946-c2389c3cb60a // indirect |
Lorenz Brun | 6107ed1 | 2022-06-28 12:56:28 +0000 | [diff] [blame] | 305 | github.com/opencontainers/selinux v1.10.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 306 | github.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492 // indirect |
| 307 | github.com/opentracing/opentracing-go v1.2.0 // indirect |
| 308 | github.com/openzipkin-contrib/zipkin-go-opentracing v0.4.5 // indirect |
| 309 | github.com/openzipkin/zipkin-go v0.4.0 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 310 | github.com/oschwald/geoip2-golang v1.7.0 // indirect |
| 311 | github.com/oschwald/maxminddb-golang v1.9.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 312 | github.com/peterbourgon/diskv v2.0.1+incompatible // indirect |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 313 | github.com/pganalyze/pg_query_go/v2 v2.1.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 314 | github.com/philhofer/fwd v1.1.1 // indirect |
| 315 | github.com/pierrec/lz4 v2.6.1+incompatible // indirect |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 316 | github.com/pingcap/errors v0.11.5-0.20210425183316-da1aaba5fb63 // indirect |
| 317 | github.com/pingcap/log v0.0.0-20210906054005-afc726e70354 // indirect |
| 318 | github.com/pingcap/tidb/parser v0.0.0-20220725134311-c80026e61f00 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 319 | github.com/pkg/xattr v0.4.1 // indirect |
| 320 | github.com/pmezard/go-difflib v1.0.0 // indirect |
| 321 | github.com/pquerna/cachecontrol v0.0.0-20171018203845-0dec1b30a021 // indirect |
| 322 | github.com/prometheus/client_golang v1.12.1 // indirect |
| 323 | github.com/prometheus/client_model v0.2.0 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 324 | github.com/prometheus/common v0.34.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 325 | github.com/prometheus/procfs v0.7.3 // indirect |
| 326 | github.com/quobyte/api v0.1.8 // indirect |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 327 | github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 328 | github.com/rivo/uniseg v0.2.0 // indirect |
| 329 | github.com/robfig/cron/v3 v3.0.1 // indirect |
Serge Bazanski | a9590fe | 2022-09-13 13:51:41 +0200 | [diff] [blame] | 330 | github.com/rs/cors v1.8.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 331 | github.com/rubiojr/go-vhd v0.0.0-20200706105327-02e210299021 // indirect |
| 332 | github.com/russross/blackfriday v1.5.2 // indirect |
| 333 | github.com/russross/blackfriday/v2 v2.1.0 // indirect |
| 334 | github.com/safchain/ethtool v0.0.0-20210803160452-9aa261dae9b1 // indirect |
Leopold | be326c2 | 2023-01-04 20:42:59 +0100 | [diff] [blame] | 335 | github.com/sassoftware/go-rpmutils v0.1.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 336 | github.com/sbezverk/nftableslib v0.0.0-20210111145735-b08b2d804e1f // indirect |
Lorenz Brun | b401d63 | 2022-06-28 13:00:02 +0000 | [diff] [blame] | 337 | github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 338 | github.com/sirupsen/logrus v1.8.1 // indirect |
| 339 | github.com/soheilhy/cmux v0.1.5 // indirect |
| 340 | github.com/stoewer/go-strcase v1.2.0 // indirect |
| 341 | github.com/storageos/go-api v2.2.0+incompatible // indirect |
| 342 | github.com/stretchr/objx v0.2.0 // indirect |
| 343 | github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect |
| 344 | github.com/tinylib/msgp v1.1.2 // indirect |
| 345 | github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802 // indirect |
| 346 | github.com/u-root/uio v0.0.0-20210528114334-82958018845c // indirect |
| 347 | github.com/ulikunitz/xz v0.5.7 // indirect |
| 348 | github.com/urfave/cli v1.22.4 // indirect |
| 349 | github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 // indirect |
| 350 | github.com/vmware/govmomi v0.20.3 // indirect |
Leopold | be326c2 | 2023-01-04 20:42:59 +0100 | [diff] [blame] | 351 | github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 352 | github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect |
| 353 | github.com/xlab/treeprint v0.0.0-20181112141820-a009c3971eca // indirect |
| 354 | go.etcd.io/bbolt v1.3.6 // indirect |
Lorenz Brun | b401d63 | 2022-06-28 13:00:02 +0000 | [diff] [blame] | 355 | go.etcd.io/etcd/client/v2 v2.305.4 // indirect |
| 356 | go.etcd.io/etcd/pkg/v3 v3.5.4 // indirect |
| 357 | go.etcd.io/etcd/raft/v3 v3.5.4 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 358 | go.opencensus.io v0.23.0 // indirect |
| 359 | go.opentelemetry.io/contrib v0.20.0 // indirect |
| 360 | go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.28.0 // indirect |
| 361 | go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.20.0 // indirect |
| 362 | go.opentelemetry.io/otel v1.3.0 // indirect |
| 363 | go.opentelemetry.io/otel/exporters/otlp v0.20.0 // indirect |
| 364 | go.opentelemetry.io/otel/metric v0.20.0 // indirect |
| 365 | go.opentelemetry.io/otel/sdk v1.3.0 // indirect |
| 366 | go.opentelemetry.io/otel/sdk/export/metric v0.20.0 // indirect |
| 367 | go.opentelemetry.io/otel/sdk/metric v0.20.0 // indirect |
| 368 | go.opentelemetry.io/otel/trace v1.3.0 // indirect |
| 369 | go.opentelemetry.io/proto/otlp v0.11.0 // indirect |
Serge Bazanski | fdc3a24 | 2022-04-06 15:56:38 +0200 | [diff] [blame] | 370 | go.starlark.net v0.0.0-20210223155950-e043a3d3c984 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 371 | go.uber.org/atomic v1.9.0 // indirect |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 372 | go.uber.org/zap v1.19.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 373 | golang.org/x/arch v0.0.0-20190927153633-4e8777c89be4 // indirect |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 374 | golang.org/x/exp v0.0.0-20220428152302-39d4317da171 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 375 | golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 376 | golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect |
| 377 | golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect |
Serge Bazanski | 1e9d7d8 | 2022-09-15 18:45:44 +0200 | [diff] [blame] | 378 | golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 379 | golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 380 | golang.zx2c4.com/wireguard v0.0.0-20220202223031-3b95c81cc178 // indirect |
Serge Bazanski | 1e9d7d8 | 2022-09-15 18:45:44 +0200 | [diff] [blame] | 381 | gonum.org/v1/gonum v0.9.3 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 382 | google.golang.org/api v0.78.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 383 | google.golang.org/appengine v1.6.7 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 384 | gopkg.in/DataDog/dd-trace-go.v1 v1.38.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 385 | gopkg.in/djherbis/times.v1 v1.2.0 // indirect |
| 386 | gopkg.in/gcfg.v1 v1.2.3 // indirect |
| 387 | gopkg.in/inf.v0 v0.9.1 // indirect |
| 388 | gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 389 | gopkg.in/square/go-jose.v2 v2.6.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 390 | gopkg.in/warnings.v0 v0.1.2 // indirect |
| 391 | gopkg.in/yaml.v2 v2.4.0 // indirect |
| 392 | gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect |
Leopold | d639776 | 2023-01-31 18:16:07 +0100 | [diff] [blame] | 393 | honnef.co/go/tools v0.2.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 394 | k8s.io/apiextensions-apiserver v0.0.0 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 395 | k8s.io/apiserver v0.24.2 // indirect |
| 396 | k8s.io/cloud-provider v0.24.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 397 | k8s.io/cluster-bootstrap v0.0.0 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 398 | k8s.io/component-helpers v0.24.2 // indirect |
| 399 | k8s.io/controller-manager v0.24.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 400 | k8s.io/cri-api v0.23.1 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 401 | k8s.io/csi-translation-lib v0.24.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 402 | k8s.io/kube-aggregator v0.0.0 // indirect |
| 403 | k8s.io/kube-controller-manager v0.0.0 // indirect |
| 404 | k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42 // indirect |
| 405 | k8s.io/kube-scheduler v0.0.0 // indirect |
| 406 | k8s.io/legacy-cloud-providers v0.0.0 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 407 | k8s.io/metrics v0.24.2 // indirect |
| 408 | k8s.io/mount-utils v0.24.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 409 | k8s.io/pod-security-admission v0.0.0 // indirect |
| 410 | k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect |
Serge Bazanski | a9590fe | 2022-09-13 13:51:41 +0200 | [diff] [blame] | 411 | nhooyr.io/websocket v1.8.6 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 412 | sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.30 // indirect |
| 413 | sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect |
| 414 | sigs.k8s.io/kustomize/api v0.11.4 // indirect |
| 415 | sigs.k8s.io/kustomize/kustomize/v4 v4.5.4 // indirect |
| 416 | sigs.k8s.io/kustomize/kyaml v0.13.6 // indirect |
| 417 | sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect |
| 418 | sigs.k8s.io/yaml v1.2.0 // indirect |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 419 | ) |