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: huginn/README.md
+18-6
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ This chart installs and starts 3 applications:
16
16
17
17
- The Huginn main instance that also function as the web interface
18
18
- A Huginn worker instance
19
-
- Bitnami's MySQL chart as a dependency as the database
19
+
-Optionally, one of Bitnami's MySQL or PostgreSQL charts as a database dependency (default is MySQL)
20
20
21
21
It is based on the [single-process docker image of Huginn](https://hub.docker.com/r/huginn/huginn-single-process).
22
22
@@ -95,12 +95,24 @@ The command removes all the Kubernetes components associated with the chart and
95
95
|`seed.enabled`| Seed the database with an initial admin user |`true`|
96
96
|`seed.username`| If `seed.enabled` is `true`, the username for the initial user |`admin`|
97
97
|`seed.password`| If `seed.enabled` is `true`, the password for the initial user. **Make sure you change this to a secure password**|`ChangeMe!`|
98
-
|`mysql.install`| Install a [bitnami/mysql](https://artifacthub.io/packages/helm/bitnami/mysql/8.4.4) instance as a dependency |`true`|
98
+
|`database.type`| The type of the backing database. Valid values are `mysql` and `postgresql`. **Ignored if `mysql.deployChart` or `postgresql.deployChart` is true.**|`""`|
99
+
|`database.host`| The host address of the backing database. **Ignored if `mysql.deployChart` or `postgresql.deployChart` is true.**|`nil`|
100
+
|`database.name`| The name of the backing database. **Ignored if `mysql.deployChart` or `postgresql.deployChart` is true.**|`nil`|
101
+
|`database.username`| The auth username for the backing database. **Ignored if `mysql.deployChart` or `postgresql.deployChart` is true.**|`nil`|
102
+
|`database.password`| The auth password of the backing database. **Ignored if `mysql.deployChart` or `postgresql.deployChart` is true.**|`nil`|
103
+
|`database.port`| The port number of the backing database. **Ignored if `mysql.deployChart` or `postgresql.deployChart` is true.**|`nil`|
104
+
|`mysql.deployChart`| Install a [bitnami/mysql](https://artifacthub.io/packages/helm/bitnami/mysql/8.4.4) instance as a dependency. Mutually exclusive with `postgresql.deployChart`|`true`|
99
105
|`mysql`| The configuration for the [bitnami/mysql](https://artifacthub.io/packages/helm/bitnami/mysql/8.4.4) subchart. For additional configuration, see the official chart README |_See below_|
100
-
|`mysql.auth.database`| The database name for Huginn to connect to. If `mysql.install` is `true`, the database with this name will be created as well |`huginn`|
101
-
|`mysql.auth.username`| The MySQL DB username for Huginn to use. If `mysql.install` is `true`, the user with this name will be configured as well |`huginn`|
102
-
|`mysql.auth.password`| The MySQL DB password for Huginn to use. If `mysql.install` is `true`, the user with this password will be configured as well. **Make sure you change this to a secure password**|`ChangeMe!`|
103
-
|`mysql.auth.rootPassword`| The MySQL root password. **Used only when `mysql.install` is `true`. Make sure you change this to a secure password**|`DefinitelyChangeMe!`|
106
+
|`mysql.auth.database`| The database name for Huginn to connect to. If `mysql.deployChart` is `true`, the database with this name will be created as well |`huginn`|
107
+
|`mysql.auth.username`| The MySQL DB username for Huginn to use. If `mysql.deployChart` is `true`, the user with this name will be configured as well |`huginn`|
108
+
|`mysql.auth.password`| The MySQL DB password for Huginn to use. If `mysql.deployChart` is `true`, the user with this password will be configured as well. **Make sure you change this to a secure password**|`ChangeMe!`|
109
+
|`mysql.auth.rootPassword`| The MySQL root password. **Used only when `mysql.deployChart` is `true`. Make sure you change this to a secure password**|`DefinitelyChangeMe!`|
110
+
|`postgresql.deployChart`| Install a [bitnami/postgresql](https://artifacthub.io/packages/helm/bitnami/postgresql/10.3.11) instance as a dependency. Mutually exclusive with `mysql.deployChart`|`false`|
111
+
|`postgresql`| The configuration for the [bitnami/postgresql](https://artifacthub.io/packages/helm/bitnami/postgresql/10.3.11) subchart. For additional configuration, see the official chart README |_See below_|
112
+
|`postgresql.postgresqlDatabase`| The database name for Huginn to connect to. If `postgresql.deployChart` is `true`, the database with this name will be created as well |`huginn`|
113
+
|`postgresql.postgresqlUsername`| The PostgreSQL DB username for Huginn to use. If `postgresql.deployChart` is `true`, the user with this name will be configured as well |`huginn`|
114
+
|`postgresql.postgresqlPassword`| The PostgreSQL DB password for Huginn to use. If `postgresql.deployChart` is `true`, the user with this password will be configured as well. **Make sure you change this to a secure password**|`ChangeMe!`|
115
+
|`postgresql.postgresqlPostgresPassword`| The PostgreSQL admin user password. **Used only when `postgresql.deployChart` is `true`. Make sure you change this to a secure password**|`DefinitelyChangeMe!`|
104
116
105
117
106
118
The above config parameters map to the various configuration env variables of a typical Huginn server.
0 commit comments