Random Helm Output messages
See original GitHub issueIn the VSCode output window, there are sometimes very vague errors from the Helm extension that pop up every time you open up a helm based project. There is no detail around these messages, and I cannot figure out how to turn them off or where the error is coming from. There is no information in helm lint
nor in the Problems tab. Please provide more information about why these are occuring. Example:
Unexpected characters ().
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:10 (3 by maintainers)
Top Results From Across the Web
Chart Development Tips and Tricks - Helm
Be Careful with Generating Random Values There are functions in Helm that allow you to generate random data, cryptographic keys, and so on....
Read more >13 Best Practices for using Helm - Coder Society
Helm functions are used to generate random data, such as passwords, keys, and certificates. Random generation creates new arbitrary values and ...
Read more >Manage Auto-generated Secrets In Your Helm Charts - ITNEXT
Helm provides a list of random string generation functions that allow us to generate cryptographically secure random strings.
Read more >k8s-helm/charts_tips_and_tricks.md at master - GitHub
There are functions in Helm that allow you to generate random data, cryptographic keys, and so on. These are fine to use. But...
Read more >Reuse uuid in helm charts - Stack Overflow
One of its configuration options is an "Erlang cookie", also a random string that needs to be consistent across all replicas and upgrades....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I have seen this issue for a long time, but never reported it. It happens every time I open a repo with Helm where I have the
values.yaml
file open. The output is the same as in the original post:Unexpected characters ().
(seen in the Output for Helm). The annoying part is that this error actually opens the Output panel automatically, so I have to manually close it every time.Hey just to chime in that I’ve been facing a similar issue… in my case this was caused by some empty lines in the middle of commented text:
values.yaml
snippet:Was causing this error:
Removing the empty line has removed the warning…