Can not login to superset after installing it on AWS kuberbetes

8/14/2020

I installed amancevice/superset to AWS Kubernetes.
When i open Load balancer DNS, I can see superset login page but default login is not working admin/admin.
Is there anything i missed?

Here's my yaml file i used to install superset

Superset.yaml

apiVersion: apps/v1
kind: Deployment
metadata:
  name: superset-deployment
  namespace: default
spec:
  selector:
    matchLabels:
      app: superset
  template:
    metadata:
      labels:
        app: superset
    spec:
      containers:
      -  name: superset
         image: amancevice/superset:latest
         ports:
         - containerPort: 8088

kubectl create -f superset.yaml

-- CaffeinatedCod3r
amazon-eks
apache-superset
kubernetes

1 Answer

8/23/2020

To initialize the database with an admin user, Run superset-init helper script

kubectl exec -it superset superset-init

MoreDetails Here

-- jagamts1
Source: StackOverflow