Usage advice: quote app.ini
section headers in values.yml
if they contain a dot
#516
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
See discussion at https://github.com/go-gitea/gitea/issues/26838.
All section headers in
values.yml
undergitea.config
that contain a dot should be written asWithout the quotes, helm will split the section name into two parts consistent of "section" and "header" whereas they should appear "as is" in
app.ini
, i.e."section.header"
.🤔 It's documented how to pass settings containing a
.
in our Helm Chart (general information: https://gitea.com/gitea/helm-chart#configuration, cross references for ConfigMaps and Secrets: https://gitea.com/gitea/helm-chart#additional-_appini_-settings).I understand the intention of the GitHub issue, like the idea and understand the limits. Should we extend our documentation by that quoting hint?
More is always better I'd say :) I just wanted to give it a bit more visibility with the issue and pin as many users will probably overlook it in our super long README :)
How did you get Helm to split the settings during processing? Did you pass the setting via
--set
CLI parameter? I never encountered that issue in the past.