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
{{ message }}
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
|`existingSecret`| Refer to an existing secret to avoid managing secrets through Helm. See templates/secret.yaml for required contents of your existing secret. This secret is also used for the Worker and Flower components. |`null`|
53
55
|`settings.allowedHosts`| A comma-separated list of hosts allowed by the application |`"open-notificaties.gemeente.nl"`|
54
56
|`settings.secretKey`| The secret key of the application |`"SOME-RANDOM-SECRET"`|
55
57
|`settings.database.host`| The hostname of PostgreSQL |`"open-notificaties-postgresql"`|
56
58
|`settings.database.port`| The port of PostgreSQL |`5432`|
57
59
|`settings.database.username`| The username of PostgreSQL |`"postgres"`|
58
60
|`settings.database.password`| The password of PostgreSQL |`"SUPER-SECRET"`|
59
61
|`settings.database.name`| The database name of PostgreSQL |`"open-notificaties"`|
62
+
|`settings.database.sslmode`| The SSL-mode used by the postgres client. See [docs](https://www.postgresql.org/docs/current/libpq-ssl.html) for more info |`"prefer"`|
60
63
|`settings.cache.default`| The Redis cache for the default cache |`"open-notificaties-redis-master:6379/0"`|
61
64
|`settings.cache.axes`| The Redis cache for the axes cache |`"open-notificaties-redis-master:6379/0"`|
62
65
|`settings.email.host`| The hostname of the SMTP server |`"localhost"`|
@@ -69,11 +72,23 @@ table below describes the supported versions
69
72
|`settings.celery.resultBackend`| The URL to the Celery result backend |`"redis://open-notificaties-redis-master:6379/1"`|
70
73
|`settings.isHttps`| Used to construct absolute URLs and controls a variety of security settings |`true`|
71
74
|`settings.debug`| Only set this to True on a local development environment. Various other security settings are derived from this setting |`false`|
75
+
|`settings.flower.urlPrefix`| If enabled, deploy Flower on a non-root URL |`""`|
76
+
|`settings.flower.basicAuth`| Secure Flower with [Basic Authentication](https://flower.readthedocs.io/en/latest/config.html#basic-auth). This is a comma-separated list of `username:password`. You should configure this when `flower.ingress.enabled` is set to true. |`""`|
77
+
|`worker.podLabels`| Additional labels to be set on the open-notification worker pods |`{}`|
|`postgresql.persistence.existingClaim`| Use an existing persistent volume claim |`null`|
75
81
|`postgresql.postgresqlDatabase`| The PostgreSQL database name |`"open-notificaties"`|
76
82
|`postgresql.postgresqlPassword`| The PostgreSQL administrative password |`"SUPER-SECRET"`|
83
+
|`flower.enabled`| Whether or not to deploy the [Flower](https://flower.readthedocs.io/en/latest/) component, which is a monitoring tool for Celery |`false`|
84
+
|`flower.replicaCount`| The number of replicas for Celery Flower |`1`|
85
+
|`flower.podLabels`| Additional labels to be set for Celery Flower |`{}`|
86
+
|`flower.extraEnvVars`| Configure Flower through additional environment variables. For a full list of possibilities, see [Flower config docs](https://flower.readthedocs.io/en/latest/config.html)|`{}`|
87
+
|`flower.extraEnvVarsSecret`| Configure Flower through additional environment variables. This property should contain secrets like basic-auth. For a full list of possibilities, see [Flower config docs](https://flower.readthedocs.io/en/latest/config.html)|`{}`|
88
+
|`flower.ingress.enabled`| Use a dedicated Ingress for Flower, which can act as a Management Ingress. When `Values.ingress.enabled` is set to true and this parameter to false, then Flower will be exposed on the main Ingress. |`false`|
89
+
|`flower.ingress.annotations`| Additional annotations on the Flower Ingress |`{}`|
0 commit comments