Create helm chart on the fly

Viewed 465

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 ?

1 Answers

There are two choices in move2kube (use 0.2.0 alpha versions or latest), --setconfig and --config. The simplest for you is to run the step manually once, and then copy the m2kconfig.yaml file in the output folder, and place it in the filesystem, and provide that as --config m2kconfig.yaml during execution. Add --qaskip too.

Related