modded some kimai stuff
This commit is contained in:
parent
51fb0f51df
commit
a5213c7f98
|
|
@ -23,6 +23,7 @@ mariadb:
|
|||
auth:
|
||||
existingSecret: kimai-secrets
|
||||
username: kimai
|
||||
database: kimai
|
||||
primary:
|
||||
persistence:
|
||||
size: 4Gi
|
||||
|
|
|
|||
6
recon.sh
Executable file
6
recon.sh
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
flux reconcile kustomization apps
|
||||
flux reconcile kustomization infrastructure
|
||||
flux reconcile kustomization secrets
|
||||
flux reconcile source git flux-system
|
||||
|
|
@ -18,7 +18,11 @@ spec:
|
|||
app-secret: '{{ index . "kimai-admin-password" }}'
|
||||
admin-password: '{{ index . "kimai-admin-password" }}'
|
||||
mailer-url: 'null://localhost'
|
||||
database-url: 'mysql://kimai:{{ index . "mariadb-password" }}@kimai-mariadb/kimai?charset=utf8&serverVersion=10.6'
|
||||
# URL-encode DB password in case it contains reserved URI characters.
|
||||
database-url: 'mysql://kimai:{{ index . "mariadb-password" | urlquery }}@kimai-mariadb/kimai?charset=utf8&serverVersion=10.6'
|
||||
# Compatibility aliases used by some MariaDB chart versions.
|
||||
password: '{{ index . "mariadb-password" }}'
|
||||
root-password: '{{ index . "mariadb-root-password" }}'
|
||||
data:
|
||||
- secretKey: mariadb-root-password
|
||||
remoteRef:
|
||||
|
|
|
|||
Loading…
Reference in a new issue