How I can deploy superset on K8s using helm chart passing the superset_config.py values?

11/8/2019

I try use helm install --name my-release stable/superset to deploy the superset on Kubernetes. But, I need change the default config. in the helm chart this is don't clear. Any one can help?

-- Newton José
kubernetes
kubernetes-helm
superset

1 Answer

11/9/2019

helm fetch

You can use helm fetch to Download a chart to your local directory, so You can change the values in values.yaml file and then install it.

for example

helm fetch stable/superset --untar

Use text editor to change the values file

nano superset/values.yaml

Part of values.yaml is configFile, so as I can understand in link provided by You, you can change defaults here.

configFile: |-

#---------------------------------------------------------

# Superset specific config

#---------------------------------------------------------

-- jt97
Source: StackOverflow