|
| 1 | +module github.com/openshift/machine-api-operator/openshift-tests-extension |
| 2 | + |
| 3 | +go 1.24.0 |
| 4 | + |
| 5 | +// These are needed for the OTE tests. Due to how we get the kubeconfig from the command line, there doesn't seem to be |
| 6 | +// an API yet we can leverage so that I do not have to copy what openshift/kubernetes/openshift-hack/cmd/k8s-tests-ext did to initialize. |
| 7 | +replace ( |
| 8 | + github.com/onsi/ginkgo/v2 => github.com/openshift/onsi-ginkgo/v2 v2.6.1-0.20241205171354-8006f302fd12 |
| 9 | + github.com/openshift/machine-api-operator => ../ |
| 10 | + k8s.io/apiserver => github.com/openshift/kubernetes/staging/src/k8s.io/apiserver v0.0.0-20250716113245-b94367cabf3e // openshift kubernetes has very old copy of k8s.io/kubernetes/pkg/kubelet/server/server.go |
| 11 | + k8s.io/kubelet => github.com/openshift/kubernetes/staging/src/k8s.io/kubelet v0.0.0-20250716113245-b94367cabf3e // openshift kubernetes has very old copy of k8s.io/kubernetes/cmd/kubelet/app/options/options.go: |
| 12 | + k8s.io/kubernetes => github.com/openshift/kubernetes v1.30.1-0.20250716113245-b94367cabf3e //v1.30.1-0.20250704150419-38c60a516ecb |
| 13 | +) |
| 14 | + |
| 15 | +require ( |
| 16 | + github.com/go-logr/logr v1.4.2 // indirect |
| 17 | + github.com/google/uuid v1.6.0 // indirect |
| 18 | + github.com/onsi/ginkgo/v2 v2.23.4 |
| 19 | + github.com/onsi/gomega v1.37.0 |
| 20 | + github.com/openshift-eng/openshift-tests-extension v0.0.0-20250711173707-dc2a20e5a5f8 |
| 21 | + github.com/openshift/api v0.0.0-20251009093019-7837a801e8c1 // indirect |
| 22 | + github.com/openshift/client-go v0.0.0-20250710075018-396b36f983ee // indirect |
| 23 | + github.com/openshift/library-go v0.0.0-20250711143941-47604345e7ea // indirect |
| 24 | + github.com/openshift/machine-api-operator v0.0.0 |
| 25 | + github.com/prometheus/client_golang v1.22.0 // indirect |
| 26 | + github.com/spf13/cobra v1.9.1 |
| 27 | + github.com/spf13/pflag v1.0.6 |
| 28 | + github.com/stretchr/testify v1.10.0 // indirect |
| 29 | + github.com/vmware/govmomi v0.46.3 // indirect |
| 30 | + golang.org/x/net v0.38.0 // indirect |
| 31 | + golang.org/x/time v0.10.0 // indirect |
| 32 | + gopkg.in/gcfg.v1 v1.2.3 // indirect |
| 33 | + k8s.io/api v0.33.3 |
| 34 | + k8s.io/apimachinery v0.33.3 // indirect |
| 35 | + k8s.io/apiserver v0.33.3 // indirect |
| 36 | + k8s.io/client-go v0.33.3 |
| 37 | + k8s.io/cloud-provider-vsphere v1.32.2 // indirect |
| 38 | + k8s.io/component-base v0.33.3 |
| 39 | + k8s.io/cri-client v0.33.3 // indirect |
| 40 | + k8s.io/csi-translation-lib v0.33.3 // indirect |
| 41 | + k8s.io/dynamic-resource-allocation v0.33.3 // indirect |
| 42 | + k8s.io/klog/v2 v2.130.1 // indirect |
| 43 | + k8s.io/kube-scheduler v0.33.3 // indirect |
| 44 | + k8s.io/kubectl v0.33.3 // indirect |
| 45 | + k8s.io/kubernetes v1.33.3 |
| 46 | + k8s.io/mount-utils v0.33.3 // indirect |
| 47 | + k8s.io/sample-apiserver v0.33.3 // indirect |
| 48 | + k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect |
| 49 | + sigs.k8s.io/cluster-api v1.9.4 // indirect |
| 50 | + sigs.k8s.io/controller-runtime v0.20.1 // indirect |
| 51 | + sigs.k8s.io/yaml v1.4.0 // indirect |
| 52 | +) |
| 53 | + |
| 54 | +require github.com/pkg/errors v0.9.1 // indirect |
| 55 | + |
| 56 | +require ( |
| 57 | + cel.dev/expr v0.19.1 // indirect |
| 58 | + github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect |
| 59 | + github.com/JeffAshton/win_pdh v0.0.0-20161109143554-76bb4ee9f0ab // indirect |
| 60 | + github.com/MakeNowJust/heredoc v1.0.0 // indirect |
| 61 | + github.com/Microsoft/go-winio v0.6.2 // indirect |
| 62 | + github.com/Microsoft/hnslib v0.1.1 // indirect |
| 63 | + github.com/NYTimes/gziphandler v1.1.1 // indirect |
| 64 | + github.com/antlr4-go/antlr/v4 v4.13.0 // indirect |
| 65 | + github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 // indirect |
| 66 | + github.com/beorn7/perks v1.0.1 // indirect |
| 67 | + github.com/blang/semver/v4 v4.0.0 // indirect |
| 68 | + github.com/cenkalti/backoff/v4 v4.3.0 // indirect |
| 69 | + github.com/cespare/xxhash/v2 v2.3.0 // indirect |
| 70 | + github.com/chai2010/gettext-go v1.0.2 // indirect |
| 71 | + github.com/container-storage-interface/spec v1.9.0 // indirect |
| 72 | + github.com/containerd/containerd/api v1.8.0 // indirect |
| 73 | + github.com/containerd/errdefs v1.0.0 // indirect |
| 74 | + github.com/containerd/errdefs/pkg v0.3.0 // indirect |
| 75 | + github.com/containerd/log v0.1.0 // indirect |
| 76 | + github.com/containerd/ttrpc v1.2.6 // indirect |
| 77 | + github.com/containerd/typeurl/v2 v2.2.2 // indirect |
| 78 | + github.com/coreos/go-semver v0.3.1 // indirect |
| 79 | + github.com/coreos/go-systemd/v22 v22.5.0 // indirect |
| 80 | + github.com/cyphar/filepath-securejoin v0.4.1 // indirect |
| 81 | + github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect |
| 82 | + github.com/distribution/reference v0.6.0 // indirect |
| 83 | + github.com/docker/go-units v0.5.0 // indirect |
| 84 | + github.com/emicklei/go-restful/v3 v3.12.1 // indirect |
| 85 | + github.com/euank/go-kmsg-parser v2.0.0+incompatible // indirect |
| 86 | + github.com/evanphx/json-patch/v5 v5.9.0 // indirect |
| 87 | + github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect |
| 88 | + github.com/fatih/camelcase v1.0.0 // indirect |
| 89 | + github.com/felixge/httpsnoop v1.0.4 // indirect |
| 90 | + github.com/fsnotify/fsnotify v1.8.0 // indirect |
| 91 | + github.com/fxamacker/cbor/v2 v2.7.0 // indirect |
| 92 | + github.com/go-errors/errors v1.4.2 // indirect |
| 93 | + github.com/go-logr/stdr v1.2.2 // indirect |
| 94 | + github.com/go-openapi/jsonpointer v0.21.0 // indirect |
| 95 | + github.com/go-openapi/jsonreference v0.21.0 // indirect |
| 96 | + github.com/go-openapi/swag v0.23.0 // indirect |
| 97 | + github.com/go-task/slim-sprig/v3 v3.0.0 // indirect |
| 98 | + github.com/godbus/dbus/v5 v5.1.0 // indirect |
| 99 | + github.com/gogo/protobuf v1.3.2 // indirect |
| 100 | + github.com/golang/protobuf v1.5.4 // indirect |
| 101 | + github.com/google/btree v1.1.3 // indirect |
| 102 | + github.com/google/cadvisor v0.52.1 // indirect |
| 103 | + github.com/google/cel-go v0.23.2 // indirect |
| 104 | + github.com/google/gnostic-models v0.6.9 // indirect |
| 105 | + github.com/google/go-cmp v0.7.0 // indirect |
| 106 | + github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect |
| 107 | + github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect |
| 108 | + github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect |
| 109 | + github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect |
| 110 | + github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect |
| 111 | + github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 // indirect |
| 112 | + github.com/inconshreveable/mousetrap v1.1.0 // indirect |
| 113 | + github.com/josharian/intern v1.0.0 // indirect |
| 114 | + github.com/json-iterator/go v1.1.12 // indirect |
| 115 | + github.com/karrick/godirwalk v1.17.0 // indirect |
| 116 | + github.com/kylelemons/godebug v1.1.0 // indirect |
| 117 | + github.com/libopenstorage/openstorage v1.0.0 // indirect |
| 118 | + github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect |
| 119 | + github.com/mailru/easyjson v0.7.7 // indirect |
| 120 | + github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible // indirect |
| 121 | + github.com/mitchellh/go-wordwrap v1.0.1 // indirect |
| 122 | + github.com/moby/spdystream v0.5.0 // indirect |
| 123 | + github.com/moby/sys/mountinfo v0.7.2 // indirect |
| 124 | + github.com/moby/sys/userns v0.1.0 // indirect |
| 125 | + github.com/moby/term v0.5.0 // indirect |
| 126 | + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| 127 | + github.com/modern-go/reflect2 v1.0.2 // indirect |
| 128 | + github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect |
| 129 | + github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect |
| 130 | + github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect |
| 131 | + github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect |
| 132 | + github.com/opencontainers/cgroups v0.0.1 // indirect |
| 133 | + github.com/opencontainers/go-digest v1.0.0 // indirect |
| 134 | + github.com/opencontainers/image-spec v1.1.1 // indirect |
| 135 | + github.com/opencontainers/runc v1.2.5 // indirect |
| 136 | + github.com/opencontainers/runtime-spec v1.2.0 // indirect |
| 137 | + github.com/opencontainers/selinux v1.11.1 // indirect |
| 138 | + github.com/peterbourgon/diskv v2.0.1+incompatible // indirect |
| 139 | + github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect |
| 140 | + github.com/prometheus/client_model v0.6.1 // indirect |
| 141 | + github.com/prometheus/common v0.62.0 // indirect |
| 142 | + github.com/prometheus/procfs v0.15.1 // indirect |
| 143 | + github.com/russross/blackfriday/v2 v2.1.0 // indirect |
| 144 | + github.com/sirupsen/logrus v1.9.3 // indirect |
| 145 | + github.com/stoewer/go-strcase v1.3.0 // indirect |
| 146 | + github.com/stretchr/objx v0.5.2 // indirect |
| 147 | + github.com/x448/float16 v0.8.4 // indirect |
| 148 | + github.com/xlab/treeprint v1.2.0 // indirect |
| 149 | + go.etcd.io/etcd/api/v3 v3.5.21 // indirect |
| 150 | + go.etcd.io/etcd/client/pkg/v3 v3.5.21 // indirect |
| 151 | + go.etcd.io/etcd/client/v3 v3.5.21 // indirect |
| 152 | + go.opentelemetry.io/auto/sdk v1.1.0 // indirect |
| 153 | + go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful v0.42.0 // indirect |
| 154 | + go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0 // indirect |
| 155 | + go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 // indirect |
| 156 | + go.opentelemetry.io/otel v1.34.0 // indirect |
| 157 | + go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.33.0 // indirect |
| 158 | + go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.33.0 // indirect |
| 159 | + go.opentelemetry.io/otel/metric v1.34.0 // indirect |
| 160 | + go.opentelemetry.io/otel/sdk v1.33.0 // indirect |
| 161 | + go.opentelemetry.io/otel/trace v1.34.0 // indirect |
| 162 | + go.opentelemetry.io/proto/otlp v1.4.0 // indirect |
| 163 | + go.uber.org/atomic v1.9.0 // indirect |
| 164 | + go.uber.org/multierr v1.11.0 // indirect |
| 165 | + go.uber.org/zap v1.27.0 // indirect |
| 166 | + golang.org/x/crypto v0.36.0 // indirect |
| 167 | + golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect |
| 168 | + golang.org/x/oauth2 v0.27.0 // indirect |
| 169 | + golang.org/x/sync v0.14.0 // indirect |
| 170 | + golang.org/x/sys v0.32.0 // indirect |
| 171 | + golang.org/x/term v0.30.0 // indirect |
| 172 | + golang.org/x/text v0.25.0 // indirect |
| 173 | + golang.org/x/tools v0.31.0 // indirect |
| 174 | + gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect |
| 175 | + google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 // indirect |
| 176 | + google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 // indirect |
| 177 | + google.golang.org/genproto/googleapis/rpc v0.0.0-20250219182151-9fdb1cabc7b2 // indirect |
| 178 | + google.golang.org/grpc v1.70.0 // indirect |
| 179 | + google.golang.org/protobuf v1.36.5 // indirect |
| 180 | + gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect |
| 181 | + gopkg.in/go-jose/go-jose.v2 v2.6.3 // indirect |
| 182 | + gopkg.in/inf.v0 v0.9.1 // indirect |
| 183 | + gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect |
| 184 | + gopkg.in/warnings.v0 v0.1.2 // indirect |
| 185 | + gopkg.in/yaml.v2 v2.4.0 // indirect |
| 186 | + gopkg.in/yaml.v3 v3.0.1 // indirect |
| 187 | + k8s.io/apiextensions-apiserver v0.33.2 // indirect |
| 188 | + k8s.io/cli-runtime v0.33.3 // indirect |
| 189 | + k8s.io/cloud-provider v0.32.0 // indirect |
| 190 | + k8s.io/cluster-bootstrap v0.31.3 // indirect |
| 191 | + k8s.io/component-helpers v0.33.3 // indirect |
| 192 | + k8s.io/controller-manager v0.32.1 // indirect |
| 193 | + k8s.io/cri-api v0.33.3 // indirect |
| 194 | + k8s.io/kms v0.33.3 // indirect |
| 195 | + k8s.io/kube-aggregator v0.33.2 // indirect |
| 196 | + k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect |
| 197 | + k8s.io/kubelet v0.33.3 // indirect |
| 198 | + k8s.io/pod-security-admission v0.32.2 // indirect |
| 199 | + sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 // indirect |
| 200 | + sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect |
| 201 | + sigs.k8s.io/kustomize/api v0.19.0 // indirect |
| 202 | + sigs.k8s.io/kustomize/kyaml v0.19.0 // indirect |
| 203 | + sigs.k8s.io/randfill v1.0.0 // indirect |
| 204 | + sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect |
| 205 | +) |
0 commit comments