I have a requirement to create helm charts in a Jenkins pipeline.
As I understand, helmfile makes it easier to deploy helm charts across environments, but it does not help create helm charts.
I have looked at chartify. It looks like it is no longer maintained.
move2kube seems to be prompt-based system. I cannot find an argument to generate a helm chart.
Has anyone achieved this some other way ?
sh "helm init"and the like from a Jenkins pipeline, I guess, but I'm still a little unclear why you'd want to do this. Usually I've seen Jenkins used to build and deploy existing code and not to try to build up new code from scratch. (That is, I'd check in a Helm chart with each service, and possibly in a deployment stephelm installthe chart from the repository, but the chart would be in source control with the rest of the source code.) - David Maze