Skip to content

Commit

Permalink
close #2
Browse files Browse the repository at this point in the history
  • Loading branch information
robjuz committed Jul 15, 2024
1 parent d62f4f6 commit 651bdb9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions charts/kimai2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,13 @@ helm install kimai -f values.yaml robjuz/kimai2

## Configuration and installation details

### A note about database credentials
https://symfony.com/doc/6.4/doctrine.html#configuring-the-database

> If the username, password, host or database name contain any character considered special in a URI (such as : / ? # [ ] @ ! $ & ' ( ) * + , ; =), you must encode them. See RFC 3986 for the full list of reserved characters or use the urlencode function to encode them. In this case you need to remove the resolve: prefix in config/packages/doctrine.yaml to avoid errors: url: '%env(DATABASE_URL)%'
The underlying `dbtest.php` script does not support this, so **don't use special characters**

### External database support

You may want to have Kimai connect to an external database rather than installing one inside your cluster. Typical reasons for this are to use a managed database service, or to share a common database server for all your applications. To achieve this, the chart allows you to specify credentials for an external database with the [`externalDatabase` parameter](#database-parameters). You should also disable the MariaDB installation with the `mariadb.enabled` option. Here is an example:
Expand Down

0 comments on commit 651bdb9

Please sign in to comment.