-
Notifications
You must be signed in to change notification settings - Fork 345
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
Make sure that we always use the correct operator-sdk version #1777
Make sure that we always use the correct operator-sdk version #1777
Conversation
Signed-off-by: Kevin Earls <kearls@redhat.com>
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, only one thing
Makefile
Outdated
@@ -486,7 +487,7 @@ install-tools: | |||
prepare-release: | |||
$(VECHO)./.ci/prepare-release.sh | |||
|
|||
scorecard-tests: | |||
scorecard-tests: operator-sdk | |||
operator-sdk scorecard bundle -w 600s || (echo "scorecard test failed" && exit 1) |
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.
and here
Makefile
Outdated
@@ -349,7 +350,7 @@ rm -rf $$TMP_DIR ;\ | |||
endef | |||
|
|||
.PHONY: bundle | |||
bundle: manifests kustomize ## Generate bundle manifests and metadata, then validate generated files. | |||
bundle: manifests kustomize operator-sdk ## Generate bundle manifests and metadata, then validate generated files. | |||
operator-sdk generate kustomize manifests -q |
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 think we need to use $(OPERATOR_SDK)
here too.
https://github.com/jaegertracing/jaeger-operator/runs/5291691840?check_suite_focus=true#step:6:142
Signed-off-by: Kevin Earls <kearls@redhat.com>
Codecov Report
@@ Coverage Diff @@
## main #1777 +/- ##
=======================================
Coverage 87.51% 87.51%
=======================================
Files 99 99
Lines 5937 5937
=======================================
Hits 5196 5196
Misses 567 567
Partials 174 174 Continue to review full report at Codecov.
|
Signed-off-by: Kevin Earls kearls@redhat.com
Which problem is this PR solving?
Short description of the changes