-
Notifications
You must be signed in to change notification settings - Fork 1
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
fix: go build
failing
#2
Open
vadasambar
wants to merge
2
commits into
capi-samples:main
Choose a base branch
from
vadasambar:fix-go-build
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+87
−88
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,18 +3,18 @@ module github.com/capi-samples/cluster-api-provider-kwok | |
go 1.19 | ||
|
||
require ( | ||
github.com/go-logr/logr v1.2.3 | ||
github.com/onsi/ginkgo/v2 v2.9.2 | ||
github.com/onsi/gomega v1.27.5 | ||
github.com/go-logr/logr v1.2.4 | ||
github.com/onsi/ginkgo/v2 v2.11.0 | ||
github.com/onsi/gomega v1.27.8 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/spf13/pflag v1.0.5 | ||
k8s.io/api v0.27.1 | ||
k8s.io/apimachinery v0.27.1 | ||
k8s.io/client-go v0.27.1 | ||
k8s.io/api v0.27.2 | ||
k8s.io/apimachinery v0.27.2 | ||
k8s.io/client-go v0.27.2 | ||
k8s.io/klog/v2 v2.90.1 | ||
k8s.io/utils v0.0.0-20230209194617-a36077c30491 | ||
sigs.k8s.io/cluster-api v1.4.1 | ||
sigs.k8s.io/controller-runtime v0.14.5 | ||
sigs.k8s.io/cluster-api v1.5.0-beta.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have only changed
Rest of the changes are a result of doing |
||
sigs.k8s.io/controller-runtime v0.15.0 | ||
sigs.k8s.io/kwok v0.2.0 | ||
) | ||
|
||
|
@@ -33,7 +33,7 @@ require ( | |
github.com/emicklei/go-restful/v3 v3.10.2 // indirect | ||
github.com/evanphx/json-patch/v5 v5.6.0 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/go-logr/zapr v1.2.3 // indirect | ||
github.com/go-logr/zapr v1.2.4 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.6 // indirect | ||
github.com/go-openapi/jsonreference v0.20.1 // indirect | ||
github.com/go-openapi/swag v0.22.3 // indirect | ||
|
@@ -60,10 +60,10 @@ require ( | |
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/nxadm/tail v1.4.8 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/prometheus/client_golang v1.15.0 // indirect | ||
github.com/prometheus/client_model v0.3.0 // indirect | ||
github.com/prometheus/client_golang v1.16.0 // indirect | ||
github.com/prometheus/client_model v0.4.0 // indirect | ||
github.com/prometheus/common v0.42.0 // indirect | ||
github.com/prometheus/procfs v0.9.0 // indirect | ||
github.com/prometheus/procfs v0.10.1 // indirect | ||
github.com/wzshiming/cron v0.2.1 // indirect | ||
github.com/wzshiming/ctc v1.2.3 // indirect | ||
github.com/wzshiming/llrb v0.2.1 // indirect | ||
|
@@ -72,25 +72,25 @@ require ( | |
go.uber.org/multierr v1.8.0 // indirect | ||
go.uber.org/zap v1.24.0 // indirect | ||
golang.org/x/exp v0.0.0-20221126150942-6ab00d035af9 // indirect | ||
golang.org/x/net v0.8.0 // indirect | ||
golang.org/x/oauth2 v0.6.0 // indirect | ||
golang.org/x/sync v0.1.0 // indirect | ||
golang.org/x/sys v0.7.0 // indirect | ||
golang.org/x/term v0.7.0 // indirect | ||
golang.org/x/text v0.8.0 // indirect | ||
golang.org/x/net v0.11.0 // indirect | ||
golang.org/x/oauth2 v0.9.0 // indirect | ||
golang.org/x/sync v0.2.0 // indirect | ||
golang.org/x/sys v0.9.0 // indirect | ||
golang.org/x/term v0.9.0 // indirect | ||
golang.org/x/text v0.10.0 // indirect | ||
golang.org/x/time v0.3.0 // indirect | ||
golang.org/x/tools v0.7.0 // indirect | ||
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect | ||
golang.org/x/tools v0.9.3 // indirect | ||
gomodules.xyz/jsonpatch/v2 v2.3.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.30.0 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
k8s.io/apiextensions-apiserver v0.26.1 // indirect | ||
k8s.io/cluster-bootstrap v0.25.0 // indirect | ||
k8s.io/component-base v0.27.1 // indirect | ||
k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a // indirect | ||
k8s.io/apiextensions-apiserver v0.27.2 // indirect | ||
k8s.io/cluster-bootstrap v0.27.2 // indirect | ||
k8s.io/component-base v0.27.2 // indirect | ||
k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f // indirect | ||
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect | ||
sigs.k8s.io/yaml v1.3.0 // indirect | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would throw the following error
Updating controller-runtime to
v0.15.0
fixes the above issue but creates another problem. There's a bunch of breaking changes inv0.15.0
which cluster-api has addressed inv1.5.0-beta.0
. Any lower version of cluster-api andgo build
fails.