arttor / helmify

Creates Helm chart from Kubernetes yaml
MIT License
1.44k stars 130 forks source link

More flags to control what is generated #54

Open alanmeadows opened 2 years ago

alanmeadows commented 2 years ago

For our use case, we really want to leverage helmify to keep CRDs and RBAC up to date with changes in the chart kept in the same repository that houses a large set of controllers.

However, we want to maintain the chart (e.g. deployment, values, and so on) ourselves. We would really benefit from individual flags within helmify to control what it generates and what it doesn't (e.g. only do CRDs and RBAC).

arttor commented 2 years ago

Very good suggestion @alanmeadows ! I was thinking to add something like this:

helmify --only=rbac,crd
helmify --skip=deployment,configmap

What do you think?