Is there any good information or insight someone can give on the difference between helm/v3 charts vs releases? They seem to do the same thing?
q
quiet-wolf-18467
03/15/2022, 10:56 AM
Helm.Charts are our initial implementation and doesn’t use Helm under the hood, which means that not all of Helm’s features are available.
Helm.Release uses Helm as a library and does the exact same thing as Helm CLI
When we use Helm directly, we lose access to transformations, but we can still use them with Chart
f
fast-florist-41572
03/15/2022, 11:04 AM
@quiet-wolf-18467 awesome thanks! So basically if I don't need to do transforms, its better to use the release?