winget install Kubernetes.kubectl
winget install Helm.Helm
minikube start
minikube status
host: Running
kubelet: Running
apiserver: Running
kubeconfig: Configured
minikube dashboard
helm repo add superset https://apache.github.io/superset
helm upgrade --install --values values.yaml superset superset/superset
configOverrides:
secret: |
SECRET_KEY = 'SECRET_KEY_VALUE'
bootstrapScript: |
#!/bin/bash
pip install psycopg2==2.9.6 \
sqlalchemy-bigquery==1.6.1 \
elasticsearch-dbapi==0.2.5 &&\
if [ ! -f ~/bootstrap ]; then echo "Running Superset with uid {{ .Values.runAsUser }}" > ~/bootstrap; fi
init:
loadExamples: true
init:
createAdmin: true
adminUser:
username: admin
firstname: Superset
lastname: Admin
email: admin@superset.com
password: passwd
kubectl port-forward service/superset 8088:8088