We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ContainerPilot version: 3.8.0
If the environment variable value contains an equal sign, =, everything is trimmed from that point. For example:
=
Environment variable ABC is set to abc=cde== Template has {{ .ABC }} Output is just abc and the =cde== part is trimmed.
ABC
abc=cde==
{{ .ABC }}
abc
=cde==
The text was updated successfully, but these errors were encountered:
fix template/parseEnvironment function
5181e0c
fixes TritonDataCenter#573
036d1f3
Successfully merging a pull request may close this issue.
ContainerPilot version: 3.8.0
If the environment variable value contains an equal sign,
=
, everything is trimmed from that point. For example:Environment variable
ABC
is set toabc=cde==
Template has
{{ .ABC }}
Output is just
abc
and the=cde==
part is trimmed.The text was updated successfully, but these errors were encountered: