4

I am looking for a helm chart of Superset to set it up on Kubernetes which is hosted remotely. In other words I would like to call "helm repo add" on a remote url.

I found this one here but it says that it is deprecated with no reference to a new location. The only thing I could find is this pull request, but the repository it is leading to does not seem to contain Superset. Does anyone know if there is still a remote Superset helm chart somewhere out there?

TylerH
  • 20,799
  • 66
  • 75
  • 101
Manuel
  • 649
  • 5
  • 22
  • Did [the one in their repo](https://github.com/apache/superset/tree/0.38.1/helm/superset) not work for you? – mdaniel Mar 19 '21 at 16:05
  • 1
    I was hoping for a remotely hosted helm chart so that I can easily update it and make it available for different programmers without the need to download the Github project each time. In other words, I would like to call "helm repo add" on a remote url. – Manuel Mar 22 '21 at 08:14

2 Answers2

3

According to the documentation here

A helm chart has been published and can be added as

helm repo add superset https://apache.github.io/superset

Then installed

helm upgrade --install --values my-values.yaml superset superset/superset
ziki
  • 46
  • 2
0

https://github.com/apache/superset/tree/master/helm/superset is where I found the code of the chart

herm
  • 14,613
  • 7
  • 41
  • 62