-
Notifications
You must be signed in to change notification settings - Fork 20
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
chore(build): upgrade Operator SDK to v1.31.0 #629
Conversation
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 like Makefile was updated such that operator-sdk
can be installed and referenced from ./bin
. Tho, it seems to ignore if there is a system installation.
We should sync with these changes?
I think this is a good idea. Let's bring in this block into our Makefile: https://github.com/operator-framework/operator-sdk/blob/8f24aa560c1b8a8ea7bbc062016347b4012e499c/testdata/go/v3/memcached-operator/Makefile#L213-L228 Then anywhere we call Once that's done we can remove the cryostat-operator/.github/workflows/test-ci-reusable.yml Lines 63 to 65 in 17d7420
Edit: We'll need this block too: https://github.com/operator-framework/operator-sdk/blob/8f24aa560c1b8a8ea7bbc062016347b4012e499c/testdata/go/v3/memcached-operator/Makefile#L49-L51 |
Sounds good! Make sense to me! |
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.
Thanks for doing this extra bit @aali309. The only thing I see missing is to add the new operator-sdk
target as a prerequisite for targets like test-scorecard
that use the new $(OPERATOR_SDK)
variable.
Something like:
test-scorecard: check_cert_manager kustomize operator-sdk
704eb71
to
db9ee77
Compare
6c237dc
to
18ddc37
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.
Looks good to me!
ping @ebaron @andrewazores |
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 good. Thanks @aali309!
No man thanks to you @ebaron @andrewazores and @tthvo |
Welcome to Cryostat! 👋
Before contributing, make sure you have:
main
branch[chore, ci, docs, feat, fix, test]
git commit -S -m "YOUR_COMMIT_MESSAGE"
Fixes: #614
Description of the change:
This change upgrades Operator SDK v1.28.0. to the newest available version at the moment (v1.31.0.)
Motivation for the change:
upgrade to the latest available version
How to manually test: