helmfile
helmfile copied to clipboard
Unable to deploy release using local .tgz
I would like to deploy my releases using local .tgz files for the charts. When I pass the .tgz file path to the chart field, I get the following error:
ERROR:
exit status 1
EXIT STATUS
1
STDERR:
Error: Failed to render chart: exit status 1: Error: failed to download "zookeeper-5.21.9.tgz" (hint: running `helm repo update` may help)
Error: plugin "diff" exited with error
COMBINED OUTPUT:
********************
Release was not present in Helm. Diff will show entire contents as new.
********************
Error: Failed to render chart: exit status 1: Error: failed to download "zookeeper-5.21.9.tgz" (hint: running `helm repo update` may help)
Error: plugin "diff" exited with error
Helmfile.yaml
releases:
## ZOOKEEPER
- name: zookeeper
chart: ./zookeeper-5.21.9.tgz
I know helm supports the ability the to deploy using a local .tgz file.
helm install test zookeeper-5.21.9.tgz
Is this functionality not supported by Helmfile? It appears that the error stems from the helm diff plugin and not native helm.
Would appreciate any feedback.
works for me perfectly fine, maybe this issue is outdated and can be closed