How to import KEDA v2.0.0-beta #1198
Answered
by
zroubalik
zzxwill
asked this question in
Q&A / Need Help
-
I'd like to use KEDA client go, so I tried to import KEDA v2.0.0-beta.
But got the following issue.
Question: How to import KEDA v2? |
Beta Was this translation helpful? Give feedback.
Answered by
zroubalik
Sep 27, 2020
Replies: 1 comment
-
go has some restrictions and limitations on importing modules and theirs versions (imho it doesn't like the beta in there). So I'd recommend you to point to the specific commit hash you I'd like to import: eg.
and the run |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
zzxwill
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
go has some restrictions and limitations on importing modules and theirs versions (imho it doesn't like the beta in there).
So I'd recommend you to point to the specific commit hash you I'd like to import:
eg.
and the run
go mod tidy
to resolve that particular commit.