kubebuilder - issue trying to install kubebuilder
When installing kubebuilder, using this command, it didn't actually work for me.
curl -L -o kubebuilder "https://go.kubebuilder.io/dl/latest/$(go env GOOS)/$(go env GOARCH)"
So I had to use the following command to download specific releases
curl -L -o kubebuilder https://github.com/kubernetes-sigs/kubebuilder/releases/download/v3.11.0/kubebuilder_linux_amd64
Comments