0

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. First app tier should be updated by my umbrella chart, not creating a new one.

First, app tier chart and second, my umbrellar chart containing app tier

Bruno Macedo
  • 121
  • 1
  • 8

1 Answers1

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