Skip to content

Commit

Permalink
fix: add cbSqlDbSchema propetry to helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
moabu committed Oct 17, 2022
1 parent 9c0a453 commit 2dac5c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ data:
CN_CONFIG_GOOGLE_SECRET_NAME_PREFIX: {{ .Values.configmap.cnConfigGoogleSecretNamePrefix | quote }}
# [google_secret_manager_envs] END
{{- end }}
CN_SQL_DB_SCHEMA: {{ .Values.configmap.cnSqlDbSchema }}
CN_SQL_DB_DIALECT: {{ .Values.configmap.cnSqlDbDialect }}
CN_SQL_DB_HOST: {{ .Values.configmap.cnSqlDbHost }}
CN_SQL_DB_PORT: {{ .Values.configmap.cnSqlDbPort | quote }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,8 @@ config:
configmap:
# -- Jetty header size in bytes in the auth server
cnJettyRequestHeaderSize: 8192
# -- 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

0 comments on commit 2dac5c8

Please sign in to comment.