You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having an issue where a folded multi-line string (>) is rendered as a normal multi-line string (|). Also when using include an additional newline is created which causes my command to fail.
The relevant part of the template looks like this:
Notice that bin/pulsar initialize-cluster-metadata \ is not rendered on a new line and that there is an empty line after that. Of course, this causes the script to fail.
Could this be a configuration issue? Considering the command line has also changed from command: ["sh", "-c"] to
command:
- sh
- -c
The text was updated successfully, but these errors were encountered:
I'm having an issue where a folded multi-line string (
>
) is rendered as a normal multi-line string (|
). Also when usinginclude
an additional newline is created which causes my command to fail.The relevant part of the template looks like this:
If I render this locally with helm 3.7.1 I get the expected result:
However, if I deploy with Flux the output looks like this:
Notice that
bin/pulsar initialize-cluster-metadata \
is not rendered on a new line and that there is an empty line after that. Of course, this causes the script to fail.Could this be a configuration issue? Considering the
command
line has also changed fromcommand: ["sh", "-c"]
toThe text was updated successfully, but these errors were encountered: