Search code examples
kuberneteskubernetes-helmmanifest

Convert Github HELM chart into standard Kubernetes manifests?


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?


Solution

  • 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.