I am using Keda along with client-go in golang. I am facing issue in getting the imported package
This is the error message
go get github.com/kedacore/keda/pkg/apis/keda/v1alpha1
go: downloading github.com/kedacore/keda v1.5.0
go: github.com/kedacore/keda@v1.5.0 requires
github.com/operator-framework/operator-sdk@v0.0.0-00010101000000-000000000000: invalid version: unknown revision 000000000000
To solve this, I did go get github.com/operator-framework/operator-sdk it got downloaded
Now I again tried go get github.com/kedacore/keda/pkg/apis/keda/v1alpha1 but still getting the same error message.
I tried
go get github.com/operator-framework/operator-sdk@v0.0.0-00010101000000-000000000000
go: github.com/operator-framework/operator-sdk@v0.0.0-00010101000000-000000000000: invalid version: unknown revision 000000000000
I also tried go clean -modcache but the issue still remains the same.
Has anyone used keda go sdk and can suggest any idea on how to solve this?