How to view only the diff between values not the manifest ?
I want to view the diff on currently deployed user-values to the to-be-applied values, not the manifest, is it possible ?
this feature is really great
I was looking for this as well. I sometimes have huge configMaps that basically bloat the output of helm diff upgrade ... when only a few lines in between the rest of the content changes.
It would be great if there was an option to have a kind of minimal output, showing only the path of the file and the lines that have changes (currently highlighted in red / green in the console output).
@fmiqbal @TimeBye @juv
Hello, for your problem, you can try to use --context number to solve it. You can set the number of lines before and after the difference is displayed. Suppose I want to display the upper and lower 5 lines of the difference. Just add --context 5.
--context int output NUM lines of context around changes (default -1)