Is there a way to leverage a helm chart from a git...
# kubernetes
s
Is there a way to leverage a helm chart from a git repo that isnt setup as a helm repo? For example, the istio gateways helmchart does not have an
index.yaml
so I cant simply place it in
Copy code
fetchOpts:{
  repo:"<https://github.com/istio/istio/tree/master/manifests/charts/gateways/istio-ingress>",
},
Ive been using path but I would prefer to source it remotely each time rather than have the chart local to my git repo.
b
you'll have to download the tarball and use
localchartopts
I'm afraid
s
darn 😞 thanks! @billowy-army-68599