-
Notifications
You must be signed in to change notification settings - Fork 115
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
Move YAML decode logic into provider #925
Conversation
Use a runtime invoke to call a common decodeYaml method in the provider rather than using YAML libraries specific to each language.
Edit: Actually, it appears that the increased time is related to the recent .NET additions rather than a performance regression. |
Co-Authored-By: Pat Gavlin <pat@pulumi.com>
044a0f0
to
cf418f0
Compare
This reverts commit c75f754.
Reintroduce the reverted changed (#941) from #925 and #934 with a few additional fixes related to the changes in #946. The major changes include the following: - Use a runtime invoke to call a common decodeYaml method in the provider rather than using YAML libraries specific to each language. - Use the namespace parameter of helm.v2.Chart as a default, and set it on known namespace-scoped resources.
Reintroduce the reverted changed (#941) from #925 and #934 with a few additional fixes related to the changes in #946. The major changes include the following: - Use a runtime invoke to call a common decodeYaml method in the provider rather than using YAML libraries specific to each language. - Use the namespace parameter of helm.v2.Chart as a default, and set it on known namespace-scoped resources.
…ces (#952) Reintroduce the reverted changed (#941) from #925 and #934 with a few additional fixes related to the changes in #946. The major changes include the following: - Use a runtime invoke to call a common decodeYaml method in the provider rather than using YAML libraries specific to each language. - Use the namespace parameter of helm.v2.Chart as a default, and set it on known namespace-scoped resources.
Hi @lblackstone, sorry to bother here, I just run into a problem of helm chart ordering like #239 , it seems that this PR removed helmSort function, wondering what's the best practice now to keep the chart resources order like how helm do? |
@just1900 Can you open a new issue with more details if you're still having problems? |
Proposed changes
Use a runtime invoke to call a common decodeYaml method in the
provider rather than using YAML libraries specific to each language.
Related issues (optional)
#865