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
| OIDC | auth-oidc-secret | oidc-client-id<br>oidc-client-secret | No |
86
-
| LDAP | auth-ldap-secret | bind-password | No |
87
-
| DATABASE | db-secret | db-encryption-key<br>db-url<br>mysql-root-password<br>mysql-password| Depends (see Database section) at least db-encryption-key is required |
We are using [mysql bitnami](https://artifacthub.io/packages/helm/bitnami/mysql) chart as a dependency for data persistence. For additional configuration options, refer to the [Mysql chart documentation](https://github.com/bitnami/charts/tree/main/bitnami/mysql)
153
+
#### External MySql database
158
154
159
155
To create the necessary database secrets, execute the following command:
160
156
@@ -164,29 +160,23 @@ To create the necessary database secrets, execute the following command:
@@ -208,7 +198,7 @@ Below is an example of the override values file:
208
198
209
199
````yaml
210
200
database:
211
-
externalDatabaseEnabled: true
201
+
type: postgresql
212
202
````
213
203
</details>
214
204
@@ -387,8 +377,8 @@ All available values are listed on the [artifacthub](https://artifacthub.io/pack
387
377
| autoscaling.minReplicas | int | `1` | Minimum replicas |
388
378
| autoscaling.targetCPUUtilizationPercentage | int | `80` | Target CPU utilization for autoscaling |
389
379
| containerPorts | object | `{"http":{"port":7575,"protocol":"TCP"}}` | containerPorts defines the ports to open on the container. It is a map where each entry specifies: - `port` (int) (required): The port number to expose inside the container. - `protocol` (string) (required): The network protocol (TCP or UDP) used for the port. - `disabled` (bool) : Optional flag to disable this port (defaults to false). Can be overridden via Helm values. By default, this configuration exposes TCP port 7575 with the name `http`. |
| database.migrationEnabled | bool | `true` | Database migration configuration. DB_MIGRATIONS_DISABLED Set to `true` to disable database migrations. Migrations are enabled by default (`false`). |
| env.AUTH_PROVIDERS | string | `"credentials"` | Enabled authentication methods. Multiple providers can be enabled with by separating them with , (ex. AUTH_PROVIDERS=credentials,oidc, it is highly recommended to just enable one provider). |
411
401
| env.AUTH_SESSION_EXPIRY_TIME | string | `"30d"` | Time for the session to time out. Can be set as pure number, which will automatically be used in seconds, or followed by s, m, h or d for seconds, minutes, hours or days. (ex: "30m") |
402
+
| env.ENABLE_DNS_CACHING | string | `"false"` | Enables dns caching. This is not yet working for all users. See #4006 |
403
+
| env.LOG_LEVEL | string | `"info"` | Log level to use. Possible values: debug/info/warn/error |
404
+
| env.NO_EXTERNAL_CONNECTION | string | `"false"` | Disables some requests that need internet connection |
412
405
| env.TZ | string | `"Europe/Paris"` | Your local time zone |
413
406
| envSecrets.authLdapCredentials.existingSecret | string | `"auth-ldap-secret"` | Name of existing secret containing LDAP credentials |
414
407
| envSecrets.authLdapCredentials.ldapBindingPassword | string | `"bind-password"` | Password for bind user secret key |
415
408
| envSecrets.authOidcCredentials.existingSecret | string | `"auth-oidc-secret"` | Name of existing secret containing OIDC credentials |
416
409
| envSecrets.authOidcCredentials.oidcClientId | string | `"oidc-client-id"` | ID of OIDC client (application) secret key |
| envSecrets.dbCredentials.dbEncryptionKey | string | `"db-encryption-key"` | Secret key for SECRET_ENCRYPTION_KEY can be generated with `openssl rand -hex 32` |
| hostAliases | list | `[]` | Add static entries to /etc/hosts in the Pod. This is useful in the following cases: - You are running in a dual-stack cluster (IPv4 + IPv6) and want to force usage of IPv4 for specific hostnames - Your application is having DNS resolution issues or IPv6 preference issues - You need to override or simulate DNS entries without changing global DNS - You are running in an air-gapped or isolated environment without external DNS Example: hostAliases: - ip: "192.168.1.10" hostnames: - "example.com" - "example.internal" |
0 commit comments