diff --git a/docker/entrypoints/run-server.sh b/docker/entrypoints/run-server.sh index 28b5dae228f5..1d79ee836480 100644 --- a/docker/entrypoints/run-server.sh +++ b/docker/entrypoints/run-server.sh @@ -19,7 +19,7 @@ # HYPHEN_SYMBOL='-' -gunicorn \ +exec gunicorn \ --bind "${SUPERSET_BIND_ADDRESS:-0.0.0.0}:${SUPERSET_PORT:-8088}" \ --access-logfile "${ACCESS_LOG_FILE:-$HYPHEN_SYMBOL}" \ --error-logfile "${ERROR_LOG_FILE:-$HYPHEN_SYMBOL}" \ diff --git a/helm/superset/Chart.yaml b/helm/superset/Chart.yaml index 0018ba4a1562..a464380d2460 100644 --- a/helm/superset/Chart.yaml +++ b/helm/superset/Chart.yaml @@ -29,7 +29,7 @@ maintainers: - name: craig-rueda email: craig@craigrueda.com url: https://github.com/craig-rueda -version: 0.16.2 # See [README](https://github.com/apache/superset/blob/master/helm/superset/README.md#versioning) for version details. +version: 0.16.3 # See [README](https://github.com/apache/superset/blob/master/helm/superset/README.md#versioning) for version details. dependencies: - name: postgresql version: 16.7.27 diff --git a/helm/superset/README.md b/helm/superset/README.md index d638e08c5a19..fba336137399 100644 --- a/helm/superset/README.md +++ b/helm/superset/README.md @@ -23,7 +23,7 @@ NOTE: This file is generated by helm-docs: https://github.com/norwoodj/helm-docs # superset -![Version: 0.16.2](https://img.shields.io/badge/Version-0.16.2-informational?style=flat-square) +![Version: 0.16.3](https://img.shields.io/badge/Version-0.16.3-informational?style=flat-square) Apache Superset is a modern, enterprise-ready business intelligence web application diff --git a/helm/superset/values.yaml b/helm/superset/values.yaml index fc5124004f76..d8d393282d1e 100644 --- a/helm/superset/values.yaml +++ b/helm/superset/values.yaml @@ -274,7 +274,7 @@ supersetNode: command: - "/bin/sh" - "-c" - - ". {{ .Values.configMountPath }}/superset_bootstrap.sh; /usr/bin/run-server.sh" + - ". {{ .Values.configMountPath }}/superset_bootstrap.sh; exec /usr/bin/run-server.sh" connections: # -- Change in case of bringing your own redis and then also set redis.enabled:false redis_host: "{{ .Release.Name }}-redis-headless"