-
Notifications
You must be signed in to change notification settings - Fork 368
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
fix!: Remove unnecessary breaking changes when upgrading to v11.0.0+ #417
base: master
Are you sure you want to change the base?
fix!: Remove unnecessary breaking changes when upgrading to v11.0.0+ #417
Conversation
/gcbrun |
Co-authored-by: Daniel Andrade <[email protected]>
…intenance_interval argument
@daniel-cit - My latest commits create another breaking change that reverts two breaking changes made in #357. Those two breaking changes include:
I understand the need to be able to support beta features and how this PR will affect consumers that are already using version >11.0.0. This repo should provide that functionality but without forcing consumers to recreate existing resources when beta features like this are added. I feel beta features, especially those that frequently introduce breaking changes, should be handled in a beta submodule, like the GKE team does with these modules: https://github.com/terraform-google-modules/terraform-google-kubernetes-engine/tree/master/modules. I would be happy to add a Do you or the broader team have any thoughts on this? |
/gcbrun |
Thanks for the contribution @thatcoleyouknow! My initial suggestion would be to split this into two PRs, with one focused solely on the provider change. The reason being is the other changes such as dynamic |
@apeabody - Before I invest time into splitting this out into two modules, do you, as a codeowner, agree with that approach I suggested above? If not, do you care to elaborate on how you would like to see beta features supported in a single module? |
Hi @thatcoleyouknow - I'm open to splitting into two modules, however similar to -Ref: https://github.com/terraform-google-modules/terraform-google-kubernetes-engine/tree/master/autogen/main |
This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days |
I still plan to do this. Bumping the thread to keep it open |
PR #330 introduced a breaking change for existing templates that were deployed with this module. For some consumers, this creates an unnecessary redeployment of all downstream instances that may come at great costs. This is an optional argument and I feel this should be treated as such with a
dynamic
block. This PR enables consumers that are upgrading from version <10.0.0 to do so without recreating their template and downstream instances while also allowing consumers that are using version >10.0.0 to avoid recreating their instances and templates by simply setting the argument to match their preferred value.Note: I made all of these changes in the GitHub editor, not my IDE, so if I missed something, please let me know and I'll get it fixed.