-
Notifications
You must be signed in to change notification settings - Fork 17
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
[FEATURE] Upgrade operator-sdk to v1.31 #139
Comments
A note on implementation - this can/should be split into multiple pull requests if it makes sense. I recommend that each version increase have a separate commit with corresponding CI checks run (so we ensure we don't break anything along the way) |
From refinement, we did drop the operator-sdk from the Build project. @adambkaplan we think you might have more context to decide if any of the alternatives would work. |
Dropping operator-sdk from Build made a lot of sense, and that decision shouldn't change. For this project, the operator-sdk provides a CLI with the features needed to build, test, and deploy the operator via OLM. The actual controller code runs with the controller-runtime library - there is no specific dependency on operator-framework libraries any more. |
From Refinement, this still in Progress but subject to change, @adambkaplan to provide an update later. |
@adambkaplan is this a blocker for v0.13 or something we want to do in 0.13? |
Update: this should wait until after v0.13.0 lands for the operator. There are a lot of fundamental changes in operator-sdk that will warrant a significant refactor of the operator itself. |
Is there an existing feature request for this?
Is your feature request related to a problem or use-case? Please describe.
operator-sdk
is a critical part of our build and release process. It is significantly out of date and needs to be upgraded. Unfortunately, there are several manual steps involved sinceoperator-sdk
assumes that your project has aMakefile
with specific structures and attributes.Describe the solution that you would like.
Upgrade the project to operator-sdk v1.31, iterating through each upgrade step along the way (starting with 1.18).
See https://sdk.operatorframework.io/docs/upgrading-sdk-version/
Describe alternatives you have considered.
Anything else?
Links to each upgrade step - note that we should only follow the upgrade steps for
go
-based operators. Changes related to Helm and Ansible-based operators do not apply:The text was updated successfully, but these errors were encountered: