Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(cloud-native): add cnSqlDbSchema property to helm chart #97

Open
wants to merge 4 commits into
base: 4.5
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ metadata:
{{ toYaml .Values.additionalAnnotations | indent 4 }}
{{- end }}
data:
GLUU_SQL_DB_SCHEMA: {{ .Values.configmap.cnSqlDbSchema | quote }}
GLUU_SQL_DB_DIALECT: {{ .Values.configmap.cnSqlDbDialect }}
GLUU_SQL_DB_HOST: {{ .Values.configmap.cnSqlDbHost }}
GLUU_SQL_DB_PORT: {{ .Values.configmap.cnSqlDbPort | quote }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,8 @@ config:
# -- Salt. Used for encoding/decoding sensitive data. If omitted or set to empty string, the value will be self-generated. Otherwise, a 24 alphanumeric characters are allowed as its value.
salt: ""
configmap:
# -- Schema name used by SQL database (default to empty-string; if using MySQL, the schema name will be resolved as the database name, whereas in PostgreSQL the schema name will be resolved as `"public"`).
cnSqlDbSchema: ""
# -- SQL database dialect. `mysql` or `pgsql`
cnSqlDbDialect: mysql
# -- SQL database host uri.
Expand Down