-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
✨ adding reflection client to determine what provider provides #586
✨ adding reflection client to determine what provider provides #586
Conversation
8d039d3
to
9a92350
Compare
This is breaking because we are not updating the external providers to use the updated code in analyzer-lsp during the build here. going to try and fix this |
3890234
to
1d49ab2
Compare
@@ -1,15 +1,18 @@ | |||
# Build the manager binary | |||
FROM golang:1.21 as builder |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to downgrade to 1.20
Signed-off-by: Shawn Hurley <[email protected]>
671b52f
to
b823117
Compare
Hey @pranavgaikwad @eemcmullan I am really sorry this feature PR turned into a catch all PR fixing CI, making all the docker files build with same go as well as the feature. if you really want, I can make more commits to make it easier to review but let me know what you think |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good overall.
Signed-off-by: Shawn Hurley <[email protected]>
Signed-off-by: Shawn Hurley <[email protected]>
Signed-off-by: Shawn Hurley <[email protected]>
Signed-off-by: Shawn Hurley <[email protected]>
Signed-off-by: Pranav Gaikwad <[email protected]>
Signed-off-by: Pranav Gaikwad <[email protected]>
Signed-off-by: Pranav Gaikwad <[email protected]>
Signed-off-by: Shawn Hurley <[email protected]>
ee9f682
to
1b30f6a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thank you very much for fixing everything
@@ -25,6 +28,6 @@ RUN npm install -g typescript-language-server typescript | |||
RUN go install golang.org/x/tools/gopls@latest | |||
|
|||
COPY --from=go-builder /generic-external-provider/generic-external-provider /usr/local/bin/generic-external-provider | |||
COPY --from=go-dep-provider /usr/local/bin/go-dependency-provider /usr/local/bin/go-dependency-provider | |||
COPY --from=go-dep-provider /usr/local/bin/golang-dependency-provider /usr/local/bin/golang-dependency-provider |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: will need to update this in kantra now. I can do so. I just don't want to forget
@@ -1,13 +1,15 @@ | |||
FROM golang:1.20 as go-builder | |||
|
|||
copy / /analyzer-lsp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think so, I think that is moving the /
context into /analyzer-lsp
in the image.
} | ||
} | ||
|
||
func checkServicesRunning(refClt *reflectClient.Client, log logr.Logger) ([]string, error) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+100
Signed-off-by: Shawn Hurley <[email protected]>
1b30f6a
to
d784948
Compare
Fixes #573
DRAFT FOR NOW
initial implementation some TODO's left want to see what CI gives me