Home > Software design >  Convert Github HELM chart into standard Kubernetes manifests?
Convert Github HELM chart into standard Kubernetes manifests?

Time:04-15

There is this HELM chart (https://github.com/cdwv/bitwarden-k8s) that I would like to convert to standard Kubernetes manifests.

When trying to use helm template I get does not appear to be a gzipped archive; got 'application/octet-stream'

Any other way I can achieve this?

CodePudding user response:

I hope you are enjoying your Kubernetes journey !

First question, is your helm chart gziped/tarballed and Have you been able to download your chart and you unzip/untar it? Is it a private github repo?

You can check this post for maybe solving your pb: Use git as helm repo throws "does not appear to be a gzipped archive; got 'text/html; charset=utf-8'"

Which command do you use to templatize your helm chart? I mean, when you have downloaded and unzipped your chart, you can just cd in the directory where there is the values and templates and type:

helm template <randomName> . 

and you'll get your k8s files completed with the values.

Waiting for your answer. bguess.

  • Related