Commit new App releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
94f27eb1cc
commit
e586841225
|
@ -1,6 +1,15 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="leantime-1.0.3"></a>
|
||||
### [leantime-1.0.3](https://github.com/truecharts/apps/compare/leantime-1.0.2...leantime-1.0.3) (2021-12-21)
|
||||
|
||||
#### Feat
|
||||
|
||||
* set LEAN_APP_URL if ingress is enabled ([#1594](https://github.com/truecharts/apps/issues/1594))
|
||||
|
||||
|
||||
|
||||
<a name="leantime-1.0.2"></a>
|
||||
### [leantime-1.0.2](https://github.com/truecharts/apps/compare/leantime-1.0.1...leantime-1.0.2) (2021-12-19)
|
||||
|
||||
|
@ -88,12 +97,3 @@
|
|||
* update non-major deps helm releases ([#1471](https://github.com/truecharts/apps/issues/1471))
|
||||
* update non-major deps helm releases ([#1434](https://github.com/truecharts/apps/issues/1434))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add a bunch of mariaDB backed Apps ([#1407](https://github.com/truecharts/apps/issues/1407))
|
||||
|
||||
|
||||
|
||||
<a name="leantime-0.0.6"></a>
|
||||
### [leantime-0.0.6](https://github.com/truecharts/apps/compare/leantime-0.0.5...leantime-0.0.6) (2021-12-05)
|
||||
|
|
@ -6,4 +6,4 @@ dependencies:
|
|||
repository: https://truecharts.org/
|
||||
version: 1.0.37
|
||||
digest: sha256:8d6dd08c8cfd71d1c1779de6b03957ab6fe8be6632a44561d36792342b00a213
|
||||
generated: "2021-12-19T23:22:03.161132428Z"
|
||||
generated: "2021-12-21T10:38:53.307205553Z"
|
|
@ -24,7 +24,7 @@ name: leantime
|
|||
sources:
|
||||
- https://leantime.io/
|
||||
- https://hub.docker.com/r/nicholaswilde/leantime
|
||||
version: 1.0.2
|
||||
version: 1.0.3
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- management
|
|
@ -11,6 +11,7 @@ You will, however, be able to use all values referenced in the common chart here
|
|||
|
||||
| Key | Type | Default | Description |
|
||||
|-----|------|---------|-------------|
|
||||
| env.LEAN_APP_URL | string | `"{{ if .Values.ingress }}{{ if .Values.ingress.main.enabled }}https://{{ ( index .Values.ingress.main.hosts 0 ).host }}{{ end }}{{ end }}"` | |
|
||||
| env.LEAN_DB_DATABASE | string | `"{{ .Values.mariadb.mariadbDatabase }}"` | |
|
||||
| env.LEAN_DB_USER | string | `"{{ .Values.mariadb.mariadbUsername }}"` | |
|
||||
| envValueFrom.LEAN_DB_HOST.secretKeyRef.key | string | `"plainhost"` | |
|
|
@ -14,6 +14,7 @@ podSecurityContext:
|
|||
env:
|
||||
LEAN_DB_DATABASE: "{{ .Values.mariadb.mariadbDatabase }}"
|
||||
LEAN_DB_USER: "{{ .Values.mariadb.mariadbUsername }}"
|
||||
LEAN_APP_URL: "{{ if .Values.ingress }}{{ if .Values.ingress.main.enabled }}https://{{ ( index .Values.ingress.main.hosts 0 ).host }}{{ end }}{{ end }}"
|
||||
|
||||
service:
|
||||
main:
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue