You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: deploy/helm/magda-core/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -65,8 +65,8 @@ A complete solution for managing, publishing and discovering government data, pr
65
65
| global.postgresql.existingSecret | string |`"db-main-account-secret"`| the secret that contains privileged PostgreSQL account password. The password will be loaded from key "postgresql-password" of the secret data. Previously (before v1.0.0), we used to load the password from "cloudsql-db-credentials" secret `password` field when use cloud provider DB services. Since v1.0.0, our helm chart can auto-create the secret and copy the content of "cloudsql-db-credentials" secret when: <ul> <li> "autoCreateSecret" is set to true</li> <li> "cloudsql-db-credentials" exists </li> </ul> for backward compatibility purposes. |
66
66
| global.postgresql.postgresqlUsername | string |`"postgres"`| PostgreSQL username For in-k8s PostgreSQL, a user account will be auto-created with superuser privileges when username is `postgres`. It's recommended use superuser `postgres` for both in-k8s PostgreSQL or cloud provider DB services (e.g. CloudSQL or AWS RDS). This user will only be used for DB schema migrators to cerate DB schema and restricted DB accounts that are used by Magda internal services to access DB. If you have to use a user account rather than `postgres`, the user account needs to have sufficient permissions to run all DB migration scripts ([e.g. here](https://github.com/magda-io/magda/tree/master/magda-migrator-registry-db/sql)). Note: Until the ticket #3126 is fixed, using a DB username rather than `postgres` will trigger an error when content DB migrate runs. |
67
67
| global.rollingUpdate.maxUnavailable | int |`0`||
68
-
| global.useAwsRdsDb | bool |`false`| whether to use AWS RDS DB config. When this option is on, all other database type e.g. `useCombinedDb` & `useCloudSql` must be turned off. |
69
-
| global.useCloudSql | bool |`false`| whether to use Google Cloud SQL database. When this option is on, all other database type e.g. `useCombinedDb` & `useAwsRdsDb` must be turned off. |
68
+
| global.useAwsRdsDb | bool |`false`| whether to use AWS RDS DB config. When this option is on, all other database type e.g. `useCombinedDb` & `useCloudSql` must be turned off. When this option is on and you want to set `autoCreateSecret` = true in order to auto create DB client password secret, you need to make sure magda.combined-db chart is selected (i.e. tags.combined-db = true). Otherwise, there will be no DB client password secret to be created (although `autoCreateSecret` = true ) |
69
+
| global.useCloudSql | bool |`false`| whether to use Google Cloud SQL database. When this option is on, all other database type e.g. `useCombinedDb` & `useAwsRdsDb` must be turned off. When this option is on and you want to set `autoCreateSecret` = true in order to auto create DB client password secret, you need to make sure magda.combined-db chart is selected (i.e. tags.combined-db = true). Otherwise, there will be no DB client password secret to be created (although `autoCreateSecret` = true ) |
70
70
| global.useCombinedDb | bool |`true`||
71
71
| global.useInK8sDbInstance | object |`{"authorization-db":false,"content-db":false,"registry-db":false,"session-db":false,"tenant-db":false}`| When `useCombinedDb` = false, setting any key to true will create an in-k8s DB instance for the particular database. Please note: you must set `useCombinedDb` = false before set any of the field to `true`. Otherwise, all db requests will still be forwarded to the combined DB instance other than each individual database instance. |
72
72
| tags | object | see default value of each individual tag below. | (object) Control on/ off of each modules. To turn on/off openfaas, please set value to `global.openfaas.enabled`|
0 commit comments