Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release-v0.18] common-instancetypes: Move to instancetype.kubevirt.io/v1beta1 #602

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ unittest: generate lint fmt vet manifests
build-functests:
go test -c ./tests

GINKGO_VERSION ?= v2.8.4
GINKGO_VERSION ?= v2.9.1
GINKGO_TIMEOUT ?= 2h

.PHONY: ginkgo
Expand Down
4 changes: 3 additions & 1 deletion automation/common/versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ function latest_version() {
}

# Latest released Kubevirt version
KUBEVIRT_VERSION=$(latest_version "kubevirt" "kubevirt")
# KUBEVIRT_VERSION=$(latest_version "kubevirt" "kubevirt")
# FIXME(lyarwood) Replace with above once v1.0.0 is released
KUBEVIRT_VERSION=v1.0.0-rc.0

# Latest released CDI version
CDI_VERSION=$(latest_version "kubevirt" "containerized-data-importer")
Expand Down
44 changes: 23 additions & 21 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ go 1.19
require (
github.com/blang/semver/v4 v4.0.0
github.com/fsnotify/fsnotify v1.6.0
github.com/go-logr/logr v1.2.3
github.com/onsi/ginkgo/v2 v2.8.4
github.com/onsi/gomega v1.27.2
github.com/openshift/api v0.0.0-20230228142948-d170fcdc0fa6 // release-4.13
github.com/go-logr/logr v1.2.4
github.com/onsi/ginkgo/v2 v2.9.1
github.com/onsi/gomega v1.27.4
github.com/openshift/api v0.0.0-20230503133300-8bbcb7ca7183 // release-4.13
github.com/openshift/custom-resource-status v1.1.2
github.com/openshift/library-go v0.0.0-20230228181805-0899dfdba7d2 // release-4.13
github.com/operator-framework/api v0.17.3
Expand All @@ -21,14 +21,14 @@ require (
github.com/spf13/pflag v1.0.5
github.com/tektoncd/pipeline v0.41.2
gomodules.xyz/jsonpatch/v2 v2.2.0
k8s.io/api v0.26.2
k8s.io/apiextensions-apiserver v0.26.2
k8s.io/apimachinery v0.26.2
k8s.io/api v0.27.1
k8s.io/apiextensions-apiserver v0.26.3
k8s.io/apimachinery v0.27.1
k8s.io/client-go v12.0.0+incompatible
k8s.io/kube-aggregator v0.26.2
k8s.io/utils v0.0.0-20230202215443-34013725500c
kubevirt.io/api v0.59.0
kubevirt.io/containerized-data-importer-api v1.55.2
k8s.io/utils v0.0.0-20230505201702-9f6742963106
kubevirt.io/api v1.0.0-rc.0
kubevirt.io/containerized-data-importer-api v1.57.0-alpha1
kubevirt.io/controller-lifecycle-operator-sdk/api v0.2.4
kubevirt.io/qe-tools v0.1.8
kubevirt.io/ssp-operator/api v0.0.0
Expand Down Expand Up @@ -59,7 +59,7 @@ require (
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/gnostic v0.5.7-v3refs // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/go-containerregistry v0.12.0 // indirect
Expand All @@ -84,7 +84,7 @@ require (
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/pborman/uuid v1.2.0 // indirect
github.com/pborman/uuid v1.2.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/prometheus/procfs v0.8.0 // indirect
github.com/prometheus/statsd_exporter v0.21.0 // indirect
Expand All @@ -95,14 +95,14 @@ require (
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
go.uber.org/zap v1.24.0 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/oauth2 v0.5.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/term v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/term v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.6.0 // indirect
golang.org/x/tools v0.7.0 // indirect
google.golang.org/api v0.100.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a // indirect
Expand All @@ -111,10 +111,10 @@ require (
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/apiserver v0.26.2 // indirect
k8s.io/component-base v0.26.2 // indirect
k8s.io/klog/v2 v2.90.0 // indirect
k8s.io/kube-openapi v0.0.0-20230109183929-3758b55a6596 // indirect
k8s.io/apiserver v0.26.3 // indirect
k8s.io/component-base v0.26.3 // indirect
k8s.io/klog/v2 v2.90.1 // indirect
k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a // indirect
knative.dev/pkg v0.0.0-20230221152827-2d84369c105d // indirect
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
Expand All @@ -123,6 +123,8 @@ require (
replace (
github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.2
github.com/gorilla/websocket => github.com/gorilla/websocket v1.4.2

k8s.io/api => k8s.io/api v0.26.2
k8s.io/client-go => k8s.io/client-go v0.26.2
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.26.2

Expand Down
Loading