winget install Kubernetes.kubectl 
 winget install Helm.Helmminikube startminikube statushost: Running
kubelet: Running
apiserver: Running
kubeconfig: Configuredminikube dashboard 
 helm repo add superset https://apache.github.io/supersethelm 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: trueinit:
createAdmin: true
adminUser:
username: admin
firstname: Superset
lastname: Admin
email: admin@superset.com
password: passwd
 
 kubectl port-forward service/superset 8088:8088