How to convert k8s yaml to helm chart How to convert k8s yaml to helm chart kubernetes kubernetes

How to convert k8s yaml to helm chart


At heart a Helm chart is still just YAML so to make that a chart, just drop that file under templates/ and add a Chart.yml.


https://github.com/mailchannels/palinurus/tree/master

This git repo contains a python script which will convert basic yamls to helm charts


You can use this tools, helmtrans : https://github.com/codeandcode0x/helmtrans . It can transform YAML to Helm Charts automation.

example:

➜ helmtrans yamltohelm -p [source path] -o [output path]