Skip to content

Commit

Permalink
[Superset] Retitled configuration categories
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaspi committed Dec 10, 2024
1 parent cd19881 commit 79bddf0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 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.1.7
version: 0.1.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
16 changes: 7 additions & 9 deletions charts/superset/values.schema.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,22 @@
{
"$schema": "http://json-schema.org/schema#",
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"properties": {
"superset": {
"description": "superset specific configuration",
"title": "Superset configuration",
"type": "object",
"title": "superset",
"properties": {
"init": {
"description": "init",
"title": "Credentials",
"type": "object",
"title": "superset",
"properties": {
"adminUser": {
"type": "object",
"title": "Admin user",
"type": "object",
"properties": {
"username": {
"title": "User name",
"type": "string",
"title": "Admin user",
"default": "admin",
"x-form": {
"value": "{{project.id}}"
Expand All @@ -28,8 +26,8 @@
}
},
"password": {
"title": "Password",
"type": "string",
"description": "Password",
"default": "changeme",
"render": "password",
"x-form": {
Expand All @@ -44,7 +42,7 @@
}
},
"bootstrapScript": {
"description": "bootstrap script",
"title": "Bootstrap init script",
"type": "string",
"render": "textArea",
"default": "#!/bin/bash \n pip install \\\n duckdb-engine \\\n psycopg2-binary \\\n sqlalchemy-trino \\\n PyHive \\\n elasticsearch-dbapi \\\n redis && \\\n if [ ! -f ~/bootstrap ]; then echo \"Running Superset with uid {{ .Values.runAsUser }}\" > ~/bootstrap; fi"
Expand Down

0 comments on commit 79bddf0

Please sign in to comment.