I have a umbrella chart and I want to know if it's possible to update an existing helm deployment through my requirements.yaml in my umbrella chart.
Asked
Active
Viewed 370 times
0

Bruno Macedo
- 121
- 1
- 8
1 Answers
3
Not directly. If you did some kind of funky CRD with one of the existing Helm operators then maybe, but overall releases don't know about each other.

coderanger
- 52,400
- 4
- 52
- 75
-
Not at all, if you deploy a dependency using umbrella chart, then you can upgrade a this dependency with another single deploy, not using umbrella. I can't update a deployment with umbrella but another chart can do it with a deploy created by umbrella. – Bruno Macedo Oct 19 '19 at 23:52