-
Notifications
You must be signed in to change notification settings - Fork 67
🌱 Move catalogd controllers and webhooks to internal/catalogd #1749
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
🌱 Move catalogd controllers and webhooks to internal/catalogd #1749
Conversation
✅ Deploy Preview for olmv1 ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
c43707e
to
2af8b64
Compare
2af8b64
to
f3b166c
Compare
Moving catalogd/internal/controllers and catalogd/internal/webhooks to internal/catalogd along with the Makefile changes Signed-off-by: Lalatendu Mohanty <[email protected]>
f3b166c
to
d06df7f
Compare
As build-deps needs the generate target which has been moved to the root Makefile i.e. operator-controller/Makefile Signed-off-by: Lalatendu Mohanty <[email protected]>
I had to remove the |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1749 +/- ##
=======================================
Coverage 67.45% 67.45%
=======================================
Files 61 61
Lines 5245 5245
=======================================
Hits 3538 3538
Misses 1446 1446
Partials 261 261
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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
@joelanford PTAL |
|
||
.PHONY: build go-build-local $(BINARIES) | ||
build: build-deps go-build-local ## Build binaries for current GOOS and GOARCH. | ||
build: go-build-local ## Build binaries for current GOOS and GOARCH. |
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.
This is a little bit unfortunate, as it requires that the root Makefile has already run it's generate
target. But since this is just temporary, and we don't have any CI or dev flows where we would be running make
tasks directly in the catalogd
Makefile, I think its fine.
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.
Agree. We should move rest of the Makefile soon and that would remove the gap.
Description
Reviewer Checklist