Skip to content

Commit

Permalink
modify trino discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
fcomte committed Feb 2, 2024
1 parent f1ec1e7 commit 3f9e029
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/superset/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.7
version: 0.0.8

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/superset/templates/_discovery.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Create the name of the config map S3 to use
{{ printf "allow_ctas: true"| indent 4}}
{{ printf "allow_cvas: true"| indent 4}}
{{ printf "database_name: %s-%s" $database $service | indent 4}}
{{ printf "sqlalchemy_uri: trino://%s:%s/%s?username=%s&password=%s" $service $port $database $username $password | indent 4}}
{{ printf "sqlalchemy_uri: trino://%s:%s@%s:%s/%s" $username $password $service $port $database | indent 4}}
{{ printf "tables: []" | indent 4}}
{{- end }}
{{- end -}}
Expand Down

0 comments on commit 3f9e029

Please sign in to comment.