sorry, 1 more Helm question before I wrap up for t...
# general
i
sorry, 1 more Helm question before I wrap up for the night... bit of a long shot but is there anything that translates helm charts into resource API calls, as if you wrote the deployment in pulumi code rather than compiled helm charts? this would make all resources deployed by the chart visible in the Resources tab in pulumi Cloud
b
if you use
helm.Chart
instead of
helm.Release
it actually uses
helm template
to render all the resources and deploys them as individual resources. The trade off is that you lose all server side mechanisms like helm hooks
i
b
should be fine