I have chart A
with two dependencies: chart D
(storage) and F
(front end). D
and F
are official charts from some remote repository and I don't have any control / impact on those.
Within chart D
the URL to it is being generated in D
s templates (lets name it D-URL
) on top of some value provided to it (let say D-NAME
). One of Helm values required for F
is this D-URL
, but also my own chart A
would like to inject this D-URL
into one of A
templates.
So my question is: is there a way for somehow store D-URL
and use D-URL
in above use case? Or the only option for me is to force user to compute and inject D-URL
as Helm value to multiple values during deployment?
I'm sorry if this is silly question, but I'm new to Helm and couldn't find clear answer online.