-
Notifications
You must be signed in to change notification settings - Fork 12
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
feat: massive operator refactor #289
Conversation
dejanzele
commented
Sep 28, 2023
- update operator dependencies and align with latest kubebuilder format
- bugfixes
Codecov ReportAll modified lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #289 +/- ##
==========================================
+ Coverage 84.17% 84.19% +0.01%
==========================================
Files 15 15
Lines 3437 3441 +4
==========================================
+ Hits 2893 2897 +4
Misses 381 381
Partials 163 163
☔ 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.
Looks great!
goos: | ||
- linux | ||
goarch: | ||
- amd64 | ||
- arm64 |
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.
👏🏼
@@ -154,7 +125,7 @@ go-release-build: goreleaser | |||
# (i.e. docker build --platform linux/arm64 ). However, you must enable docker buildKit for it. | |||
# More info: https://docs.docker.com/develop/develop-images/build_enhancements/ | |||
.PHONY: docker-build | |||
docker-build: test ## Build docker image with the manager. |
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 always used to annoy me.
@@ -18,9 +18,11 @@ package v1alpha1 | |||
|
|||
import ( | |||
"k8s.io/apimachinery/pkg/runtime" | |||
"k8s.io/utils/ptr" |
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 package is new to me - it looks very useful.