Can't run kubebuilder init
with a non-official go release
#412
Labels
good first issue
Denotes an issue ready for a new contributor, according to the "help wanted" guidelines.
help wanted
Denotes an issue that needs help from a contributor. Must meet "help wanted" guidelines.
#353 added a Go version check that bails if it can't parse the version string:
https://github.com/fraenkel/kubebuilder/blob/8a8b76fb4a56c67e4f799fcf035ee22006e3011d/cmd/kubebuilder/initproject/init.go#L136-L139
This makes users with installed go versions like
1.11rc2
completely unable to create kubebuilder projects. I'm not sure if that was the intent or not, but regardless it's a blocker for corporate developers using a custom or mandated golang version.Since it seems like the purpose of the version check is to ensure that go is at least 1.10, I suggest adding a flag that allows users to skip the go version check and mentioning that flag in the fatal error message:
The text was updated successfully, but these errors were encountered: