Installing Helm chart locally: “Error: gzip: invalid header”

10/8/2017

cat configmap.yaml

apiVersion: v1
kind: ConfigMap
metadata:
  name: product-api-configmap
data:
  myvalue: "Hello World"

helm install ./configmap.yaml

Error: gzip: invalid header

-- stevek
kubernetes
kubernetes-helm

1 Answer

10/8/2017

Change directory out of templates and the chart directory and then do

helm install ./CHARTNAME

-- stevek
Source: StackOverflow