diff --git a/helm/superset/Chart.yaml b/helm/superset/Chart.yaml index a45c9c6fd9c..4fd7f59cd8d 100644 --- a/helm/superset/Chart.yaml +++ b/helm/superset/Chart.yaml @@ -22,7 +22,7 @@ maintainers: - name: craig-rueda email: craig@craigrueda.com url: https://github.com/craig-rueda -version: 0.1.1 +version: 0.1.2 dependencies: - name: postgresql version: 10.2.0 diff --git a/helm/superset/templates/_helpers.tpl b/helm/superset/templates/_helpers.tpl index cb9735730a8..33d6f41b476 100644 --- a/helm/superset/templates/_helpers.tpl +++ b/helm/superset/templates/_helpers.tpl @@ -63,8 +63,8 @@ CACHE_CONFIG = { 'CACHE_KEY_PREFIX': 'superset_', 'CACHE_REDIS_HOST': env('REDIS_HOST'), 'CACHE_REDIS_PORT': env('REDIS_PORT'), - 'CACHE_REDIS_DB': 1, - 'CACHE_REDIS_URL': f"redis://{env('REDIS_HOST')}:{env('REDIS_PORT')}/1" + 'CACHE_REDIS_PASSWORD': env('REDIS_PASSWORD'), + 'CACHE_REDIS_DB': env('REDIS_DB', 1), } DATA_CACHE_CONFIG = CACHE_CONFIG