You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 4, 2024. It is now read-only.
We based our stack off of the quickstart stack and got everything running well! However, we wanted to enable Google OAuth and that required updating the superset_config.py file. So, we decided to roll with a Docker image consisting of the following:
## Main Superset Docker image# Root image available here: https://gallery.ecr.aws/p9r6s5p7/supersetFROM public.ecr.aws/p9r6s5p7/superset:v2.0.0
USER root
RUN pip install Authlib
COPY superset_config.py /app/pythonpath
USER superset
By basing it off of the image used in this quickstart, we hoped that we would retain the AWS specific settings that made it so easy to setup and run. However, this was not the case and we're having to manually reapply all the AWS configuration that enabled things like communicating with Postgres and using Redis.
So, would it be possible for either one of two things to happen:
Sharing the Dockerfile for the image used in this stack (public.ecr.aws/p9r6s5p7/superset:v2.0.0) so we can duplicate the missing configuration (preferable)
Adding from superset_config import * that the official config.py file uses at the end of the superset_config.py file in the AWS image to overwrite configurations (see below)
"""The main config file for SupersetAll configuration in this file can be overridden by providing a superset_configin your PYTHONPATH as there is a ``from superset_config import *``at the end of this file."""
Either one of these solutions would make developing an AWS specific deployment of Superset easier. Related issue
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
We based our stack off of the quickstart stack and got everything running well! However, we wanted to enable Google OAuth and that required updating the
superset_config.py
file. So, we decided to roll with a Docker image consisting of the following:With
superset_config.py
:By basing it off of the image used in this quickstart, we hoped that we would retain the AWS specific settings that made it so easy to setup and run. However, this was not the case and we're having to manually reapply all the AWS configuration that enabled things like communicating with Postgres and using Redis.
So, would it be possible for either one of two things to happen:
public.ecr.aws/p9r6s5p7/superset:v2.0.0
) so we can duplicate the missing configuration (preferable)from superset_config import *
that the officialconfig.py
file uses at the end of thesuperset_config.py
file in the AWS image to overwrite configurations (see below)Either one of these solutions would make developing an AWS specific deployment of Superset easier. Related issue
The text was updated successfully, but these errors were encountered: