-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Feature / toml parsing #12026
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 / toml parsing #12026
Conversation
Allows to use `fromToml` in templates similar to `fromJson` or `fromYaml`. Closes helm#12024 Signed-off-by: Dominik Müller <mail@dominikm.de>
Signed-off-by: Dominik Müller <mail@dominikm.de>
582f13d
to
266ab5a
Compare
nice! exactly what I am waiting for! Please merge 🙏 |
Explains how `toToml` and `fromToml` can be used in chart templates. Implementation detail can be seen here: helm/helm#12026. Signed-off-by: Dominik Müller <mail@dominikm.de>
Explains how `toToml` and `fromToml` can be used in chart templates. Implementation detail can be seen here: helm/helm#12026. Signed-off-by: Dominik Müller <mail@dominikm.de>
Explains how `toToml` and `fromToml` can be used in chart templates. Implementation detail can be seen here: helm/helm#12026. Signed-off-by: Dominik Müller <mail@dominikm.de>
Explains how `toToml` and `fromToml` can be used in chart templates. Implementation detail can be seen here: helm/helm#12026. Signed-off-by: Dominik Müller <mail@dominikm.de>
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.
LGTMe (unofficial)
will include in Helm weekly dev call for maintainer review
Please correct the DCO issue. |
The DCO issue is because the bot that does the check didn't respond. It appears the correct sign-off is on the commit. @dominikmueller could you rebase this from main? That should fix the DCO issue and cause the test suite to run properly in CI. Otherwise, this looks ready to merge. |
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
Signed-off-by: Joe Julian <me@joejulian.name>
I merged in main to fix the DCO issue and start CI running. |
What this PR does / why we need it:
Adds
fromToml
function that allows parsing TOML configuration. LikefromJson
orfromYaml
.Closes #12024.
Special notes for your reviewer:
I added docs for
toToml
(have been missing) andfromToml
(new implementation) to the helm-www repo in this PR: helm/helm-www#1455If applicable:
-> Documentation can be found here: Add docs for TOML functions helm-www#1455
-> It's a new feature and should therefore not cause any compatibility issues.