Where is the Superset Helm Chart?

3/19/2021

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?

-- Manuel
apache-superset
kubernetes
kubernetes-helm

2 Answers

10/26/2021
-- herm
Source: StackOverflow

4/25/2021

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
Source: StackOverflow