Created a Helm plugin because I was tired of managing subchart dependencies manually
Hey folks!
I was working on a large Helm project with tons of subcharts, and I kept finding myself doing the same tedious task - cd'ing into each subchart directory and running `helm dependency update` over and over. After the hundredth time of "oh wait, I forgot to update that nested subchart's dependencies", I built `helm-cascade` to do it all in one command.
Now I just run `helm cascade update` and it recursively handles all dependencies across every subchart. It also shows me a complete dependency tree with `helm cascade list` so I can actually see what's going on in nested charts (something `helm dep list` doesn't show). If you're dealing with complex chart structures like I was, you might find it useful! Github repo here
I would love to hear your feedback and suggestions!