Skip to content

dalgo internal superset #70

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# release-name
dalgo

# apply the env
kubectl apply -f superset-env.yaml

# install/upgrade
helm upgrade --install --values values4.1.1.yaml dalgo superset/superset --version 0.14.1 --namespace superset --debug

# uninstall
helm uninstall dalgo -n superset

# port forward
kubectl port-forward service/dalgo 8088:8088 --namespace superset
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
apiVersion: v1
kind: Secret
metadata:
name: superset-dalgo-env ## superset-{{ Values.nameOverride }}-env
namespace: superset
type: Opaque
stringData:
# database
DB_HOST:
DB_NAME:
DB_PASS:
DB_PORT: "5432"
DB_USER:
SQLALCHEMY_DATABASE_URI:
BROKER_URL:

# app
SUPERSET_SECRET_KEY:
APPLICATION_HOST: "example.com"
CORS_ORIGINS:
MAPBOX_API_KEY:
OVERRIDE_APP_ICON:
APP_NAME:
SUPERSET_ADMIN_USERNAME:
SUPERSET_ADMIN_PASSWORD:
SUPERSET_ADMIN_EMAIL:
SUPERSET_FEATURE_EMBEDDED_SUPERSET: "true"
GUEST_ROLE_NAME:
GUEST_TOKEN_JWT_SECRET:

# redis
REDIS_CELERY_DB: "0"
REDIS_DB: "1"
REDIS_HOST: "search-redis-headless" ## "{{ .Release.Name }}-redis-headless"
REDIS_PORT: "6379"
REDIS_PROTO: redis
REDIS_USER: ""

# email server
SMTP_HOST:
SMTP_PORT:
SMTP_USER:
SMTP_PASSWORD:
SMTP_MAIL_FROM:

# google oauth
ENABLE_OAUTH:
GOOGLE_CLIENT_ID:
GOOGLE_CLIENT_SECRET:
GOOGLE_WHITELISTED_DOMAIN:

Loading