Closed alexellis closed 2 years ago
The update-crds.sh script uses go install which is deprecated in Go 1.17.
go install
We need to switch to go get -d $PKG instead.
go get -d $PKG
Also needs the same change:
https://github.com/openfaas/ingress-operator
https://github.com/inlets/inlets-operator
Thanks to @LucasRoesler for taking this on a few months back.
Current Behaviour / Expected Behaviour
The update-crds.sh script uses
go install
which is deprecated in Go 1.17.List All Possible Solutions and Workarounds
We need to switch to
go get -d $PKG
instead.Steps to Reproduce (for bugs)
Also needs the same change:
https://github.com/openfaas/ingress-operator
https://github.com/inlets/inlets-operator