how to use kubebuilder helm plugin? #4800
-
this plugin can change helm chart to operator?i jast can use "kubebuilder init --plugins=helm/v1-alpha",but i dont know how to do next |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
No, it cannot cannot transform a HelmChart to an Operator. I see that a Helm chart is now scaffolded under the That means we now have two distribution options for delivering solutions to users:
This is also well documented in the generated kubebuilder/testdata/project-v4-with-plugins/README.md Lines 69 to 110 in 5d42475 For further information, you can either read its documentation: https://book.kubebuilder.io/plugins/available/helm-v1-alpha |
Beta Was this translation helpful? Give feedback.
No, it cannot cannot transform a HelmChart to an Operator.
The purpose of the HelmChart plugin is allow distribution of the project scaffolded with Kubebuilder using HelmChart since it is a common practice.
I see that a Helm chart is now scaffolded under the
dist/chart
directory, as shown in this example:https://github.com/kubernetes-sigs/kubebuilder/tree/master/testdata/project-v4-with-plugins/dist/chart
That means we now have two distribution options for delivering solutions to users:
This is also well documented in the generated
README.md
for the project scaffold:kubebuil…