carlosedp / cluster-monitoring

Cluster monitoring stack for clusters based on Prometheus Operator
MIT License
740 stars 201 forks source link

Makefile broken with go versions >=1.18 #160

Closed rmsc closed 2 years ago

rmsc commented 2 years ago

Describe the bug The Makefile uses go get to install the required go modules. Calling go get outside a module has been deprecated since go-1.17, and doesn't work since go-1.18.

Instead of go get we should use go install.