Skip to content

Commit 2dac5c8

Browse files
committed
fix: add cbSqlDbSchema propetry to helm chart
1 parent 9c0a453 commit 2dac5c8

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

flex-cn-setup/pygluu/kubernetes/templates/helm/gluu/charts/config/templates/configmaps.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ data:
4646
CN_CONFIG_GOOGLE_SECRET_NAME_PREFIX: {{ .Values.configmap.cnConfigGoogleSecretNamePrefix | quote }}
4747
# [google_secret_manager_envs] END
4848
{{- end }}
49+
CN_SQL_DB_SCHEMA: {{ .Values.configmap.cnSqlDbSchema }}
4950
CN_SQL_DB_DIALECT: {{ .Values.configmap.cnSqlDbDialect }}
5051
CN_SQL_DB_HOST: {{ .Values.configmap.cnSqlDbHost }}
5152
CN_SQL_DB_PORT: {{ .Values.configmap.cnSqlDbPort | quote }}

flex-cn-setup/pygluu/kubernetes/templates/helm/gluu/values.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,8 @@ config:
422422
configmap:
423423
# -- Jetty header size in bytes in the auth server
424424
cnJettyRequestHeaderSize: 8192
425+
# -- 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"`).
426+
cnSqlDbSchema: ""
425427
# -- SQL database dialect. `mysql` or `pgsql`
426428
cnSqlDbDialect: mysql
427429
# -- SQL database host uri.

0 commit comments

Comments
 (0)