generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make e2e a seperate module, to allow diferent dependencies
Signed-off-by: Nahshon Unna-Tsameret <nunnatsa@redhat.com>
- Loading branch information
Showing
4 changed files
with
1,725 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
module sigs.k8s.io/cluster-api-provider-kubevirt/e2e | ||
|
||
go 1.20 | ||
|
||
require ( | ||
github.com/golang/glog v1.0.0 | ||
github.com/onsi/ginkgo/v2 v2.1.4 | ||
github.com/onsi/gomega v1.19.0 | ||
github.com/spf13/pflag v1.0.5 | ||
k8s.io/api v0.23.5 | ||
k8s.io/apimachinery v0.23.5 | ||
k8s.io/client-go v12.0.0+incompatible | ||
k8s.io/utils v0.0.0-20211116205334-6203023598ed | ||
kubevirt.io/api v0.58.0 | ||
kubevirt.io/client-go v0.0.0-00010101000000-000000000000 | ||
sigs.k8s.io/cluster-api v0.3.11-0.20210525210043-6c7878e7b4a9 | ||
sigs.k8s.io/cluster-api-provider-kubevirt v0.0.0-00010101000000-000000000000 | ||
sigs.k8s.io/controller-runtime v0.11.0-beta.0.0.20211110210527-619e6b92dab9 | ||
sigs.k8s.io/kind v0.11.0 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/blang/semver v3.5.1+incompatible // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/coreos/prometheus-operator v0.38.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/evanphx/json-patch v4.12.0+incompatible // indirect | ||
github.com/fsnotify/fsnotify v1.5.1 // indirect | ||
github.com/go-kit/kit v0.9.0 // indirect | ||
github.com/go-logfmt/logfmt v0.5.0 // indirect | ||
github.com/go-logr/logr v1.2.3 // indirect | ||
github.com/gobuffalo/flect v0.2.3 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/mock v1.6.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/go-cmp v0.5.6 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/google/uuid v1.1.2 // indirect | ||
github.com/googleapis/gnostic v0.5.5 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/imdario/mergo v0.3.12 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/k8snetworkplumbingwg/network-attachment-definition-client v0.0.0-20191119172530-79f836b90111 // indirect | ||
github.com/kubernetes-csi/external-snapshotter/client/v4 v4.2.0 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/openshift/api v0.0.0-20210105115604-44119421ec6b // indirect | ||
github.com/openshift/client-go v0.0.0-20210112165513-ebc401615f47 // indirect | ||
github.com/openshift/custom-resource-status v1.1.2 // indirect | ||
github.com/pborman/uuid v1.2.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/prometheus/client_golang v1.11.0 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.28.0 // indirect | ||
github.com/prometheus/procfs v0.6.0 // indirect | ||
golang.org/x/net v0.10.0 // indirect | ||
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect | ||
golang.org/x/sys v0.8.0 // indirect | ||
golang.org/x/term v0.8.0 // indirect | ||
golang.org/x/text v0.9.0 // indirect | ||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect | ||
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
k8s.io/apiextensions-apiserver v0.23.5 // indirect | ||
k8s.io/component-base v0.23.5 // indirect | ||
k8s.io/klog/v2 v2.40.1 // indirect | ||
k8s.io/kube-openapi v0.0.0-20220124234850-424119656bbf // indirect | ||
kubevirt.io/containerized-data-importer-api v1.50.0 // indirect | ||
kubevirt.io/controller-lifecycle-operator-sdk v0.2.1 // indirect | ||
sigs.k8s.io/json v0.0.0-20211020170558-c049b76a60c6 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect | ||
sigs.k8s.io/yaml v1.3.0 // indirect | ||
) | ||
|
||
replace ( | ||
kubevirt.io/containerized-data-importer-api => github.com/kubevirt/containerized-data-importer-api v1.41.1-0.20211201033752-05520fb9f18d | ||
sigs.k8s.io/apiserver-network-proxy/konnectivity-client => sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.24 | ||
sigs.k8s.io/cluster-api => sigs.k8s.io/cluster-api v1.0.0 | ||
) | ||
|
||
replace ( | ||
golang.org/x/net => golang.org/x/net v0.10.0 | ||
k8s.io/client-go => k8s.io/client-go v0.23.1 | ||
kubevirt.io/client-go => kubevirt.io/client-go v0.58.0 | ||
sigs.k8s.io/cluster-api-provider-kubevirt => ../ | ||
) |
Oops, something went wrong.