Commit new App releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
3a7ca55762
commit
4cb24ee00e
|
@ -1 +0,0 @@
|
|||
{{ include "common.all" . }}
|
|
@ -1,6 +1,19 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="kimai-0.0.3"></a>
|
||||
### [kimai-0.0.3](https://github.com/truecharts/apps/compare/kimai-0.0.2...kimai-0.0.3) (2022-03-26)
|
||||
|
||||
#### Chore
|
||||
|
||||
* correct path for nginx ([#2284](https://github.com/truecharts/apps/issues/2284))
|
||||
|
||||
#### Fix
|
||||
|
||||
* small fixes ([#2282](https://github.com/truecharts/apps/issues/2282))
|
||||
|
||||
|
||||
|
||||
<a name="kimai-0.0.2"></a>
|
||||
### [kimai-0.0.2](https://github.com/truecharts/apps/compare/kimai-0.0.1...kimai-0.0.2) (2022-03-24)
|
||||
|
|
@ -6,4 +6,4 @@ dependencies:
|
|||
repository: https://truecharts.org/
|
||||
version: 2.0.7
|
||||
digest: sha256:a4683397c6a48cc0b7d37a73a8403c71eaea50aa29eb0ccce0a3e2e6821b9b0b
|
||||
generated: "2022-03-24T22:58:22.615293525Z"
|
||||
generated: "2022-03-26T00:14:42.395711945Z"
|
|
@ -1,5 +1,5 @@
|
|||
apiVersion: v2
|
||||
appVersion: "apache-1.1"
|
||||
appVersion: "1.19"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
|
@ -25,7 +25,7 @@ sources:
|
|||
- https://github.com/kevinpapst/kimai2
|
||||
- https://github.com/tobybatch/kimai2
|
||||
- https://hub.docker.com/r/kimai/kimai2
|
||||
version: 0.0.2
|
||||
version: 0.0.3
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- productivity
|
|
@ -15,26 +15,28 @@ You will, however, be able to use all values referenced in the common chart here
|
|||
| env.DB_PORT | string | `"3306"` | |
|
||||
| env.DB_TYPE | string | `"mysql"` | |
|
||||
| env.DB_USER | string | `"{{ .Values.mariadb.mariadbDatabase }}"` | |
|
||||
| env.TRUSTED_HOSTS | string | `"172.16.0.0/12"` | |
|
||||
| env.TRUSTED_HOSTS | string | `"localhost"` | |
|
||||
| envValueFrom.DB_HOST.secretKeyRef.key | string | `"plainhost"` | |
|
||||
| envValueFrom.DB_HOST.secretKeyRef.name | string | `"mariadbcreds"` | |
|
||||
| envValueFrom.DB_PASS.secretKeyRef.key | string | `"mariadb-password"` | |
|
||||
| envValueFrom.DB_PASS.secretKeyRef.name | string | `"mariadbcreds"` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"kimai/kimai2"` | |
|
||||
| image.tag | string | `"apache-1.19-prod@sha256:e4a92b3a87c782a8ad75fcb8468c654232ea8043efe5409877e1b06c7562f95b"` | |
|
||||
| image.repository | string | `"tccr.io/truecharts/kimai"` | |
|
||||
| image.tag | string | `"v1.19@sha256:c397c8f343f90c7997cf524d9b05636571c017db8d9e6db3c6328abfe3cd3b81"` | |
|
||||
| mariadb.enabled | bool | `true` | |
|
||||
| mariadb.existingSecret | string | `"mariadbcreds"` | |
|
||||
| mariadb.mariadbDatabase | string | `"kimai"` | |
|
||||
| mariadb.mariadbUsername | string | `"kimai"` | |
|
||||
| persistence.data.enabled | bool | `true` | |
|
||||
| persistence.data.mountPath | string | `"/opt/kimai/public"` | |
|
||||
| podSecurityContext.runAsGroup | int | `0` | |
|
||||
| podSecurityContext.runAsUser | int | `0` | |
|
||||
| persistence.data.mountPath | string | `"/opt/kimai/var"` | |
|
||||
| podSecurityContext.runAsGroup | int | `33` | |
|
||||
| podSecurityContext.runAsUser | int | `33` | |
|
||||
| probes.liveness.path | string | `"/en/login"` | |
|
||||
| probes.readiness.path | string | `"/en/login"` | |
|
||||
| probes.startup.path | string | `"/en/login"` | |
|
||||
| secret.ADMINMAIL | string | `"admin@mysecretdomain.com"` | |
|
||||
| secret.ADMINPASS | string | `"MvvTfjagiaqDprGNVA"` | |
|
||||
| securityContext.readOnlyRootFilesystem | bool | `false` | |
|
||||
| securityContext.runAsNonRoot | bool | `false` | |
|
||||
| service.main.ports.main.port | int | `10198` | |
|
||||
| service.main.ports.main.targetPort | int | `8001` | |
|
||||
|
|
@ -1,15 +1,14 @@
|
|||
image:
|
||||
repository: kimai/kimai2
|
||||
tag: apache-1.19-prod@sha256:e4a92b3a87c782a8ad75fcb8468c654232ea8043efe5409877e1b06c7562f95b
|
||||
repository: tccr.io/truecharts/kimai
|
||||
tag: v1.19@sha256:c397c8f343f90c7997cf524d9b05636571c017db8d9e6db3c6328abfe3cd3b81
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: false
|
||||
runAsNonRoot: false
|
||||
|
||||
podSecurityContext:
|
||||
runAsUser: 0
|
||||
runAsGroup: 0
|
||||
runAsUser: 33
|
||||
runAsGroup: 33
|
||||
|
||||
secret:
|
||||
ADMINMAIL: "admin@mysecretdomain.com"
|
||||
|
@ -21,7 +20,7 @@ env:
|
|||
DB_USER: "{{ .Values.mariadb.mariadbDatabase }}"
|
||||
DB_BASE: "{{ .Values.mariadb.mariadbUsername }}"
|
||||
# User Defined
|
||||
TRUSTED_HOSTS: "172.16.0.0/12"
|
||||
TRUSTED_HOSTS: "localhost"
|
||||
|
||||
envValueFrom:
|
||||
DB_PASS:
|
||||
|
@ -40,10 +39,18 @@ service:
|
|||
port: 10198
|
||||
targetPort: 8001
|
||||
|
||||
probes:
|
||||
liveness:
|
||||
path: "/en/login"
|
||||
readiness:
|
||||
path: "/en/login"
|
||||
startup:
|
||||
path: "/en/login"
|
||||
|
||||
persistence:
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: "/opt/kimai/public"
|
||||
mountPath: "/opt/kimai/var"
|
||||
|
||||
mariadb:
|
||||
enabled: true
|
|
@ -200,7 +200,7 @@ questions:
|
|||
description: "Comma separated list of trusted hosts."
|
||||
schema:
|
||||
type: string
|
||||
default: "172.16.0.0/12"
|
||||
default: "localhost"
|
||||
|
||||
- variable: TZ
|
||||
label: "Timezone"
|
||||
|
@ -1489,7 +1489,7 @@ questions:
|
|||
label: "runAsNonRoot"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
default: true
|
||||
- variable: capabilities
|
||||
label: "Capabilities"
|
||||
schema:
|
||||
|
@ -1529,13 +1529,13 @@ questions:
|
|||
description: "The UserID of the user running the application"
|
||||
schema:
|
||||
type: int
|
||||
default: 0
|
||||
default: 33
|
||||
- variable: runAsGroup
|
||||
label: "runAsGroup"
|
||||
description: The groupID this App of the user running the application"
|
||||
schema:
|
||||
type: int
|
||||
default: 0
|
||||
default: 33
|
||||
- variable: fsGroup
|
||||
label: "fsGroup"
|
||||
description: "The group that should own ALL storage."
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1 @@
|
|||
{{- include "common.all" . }}
|
|
@ -1,6 +1,15 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="recipes-6.0.11"></a>
|
||||
### [recipes-6.0.11](https://github.com/truecharts/apps/compare/recipes-6.0.10...recipes-6.0.11) (2022-03-26)
|
||||
|
||||
#### Chore
|
||||
|
||||
* correct path for nginx ([#2284](https://github.com/truecharts/apps/issues/2284))
|
||||
|
||||
|
||||
|
||||
<a name="recipes-6.0.10"></a>
|
||||
### [recipes-6.0.10](https://github.com/truecharts/apps/compare/recipes-6.0.9...recipes-6.0.10) (2022-03-24)
|
||||
|
||||
|
@ -88,12 +97,3 @@
|
|||
<a name="recipes-5.0.25"></a>
|
||||
### [recipes-5.0.25](https://github.com/truecharts/apps/compare/recipes-5.0.24...recipes-5.0.25) (2022-03-02)
|
||||
|
||||
#### Chore
|
||||
|
||||
* rename `web_portal` to `open` ([#1957](https://github.com/truecharts/apps/issues/1957))
|
||||
* update helm general non-major helm releases ([#1999](https://github.com/truecharts/apps/issues/1999))
|
||||
|
||||
|
||||
|
||||
<a name="recipes-5.0.24"></a>
|
||||
### [recipes-5.0.24](https://github.com/truecharts/apps/compare/recipes-5.0.23...recipes-5.0.24) (2022-02-21)
|
|
@ -6,4 +6,4 @@ dependencies:
|
|||
repository: https://truecharts.org/
|
||||
version: 7.0.6
|
||||
digest: sha256:c30bc628e08c5ba5641a30f0fc8e14f230ee339471d247cd365cd536875f0d92
|
||||
generated: "2022-03-25T02:25:16.121190671Z"
|
||||
generated: "2022-03-26T00:14:42.397184931Z"
|
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||
appVersion: "1.1.3"
|
||||
description: Recipes is a Django application to manage, tag and search recipes using either built in models or external storage providers hosting PDF's, Images or other files.
|
||||
name: recipes
|
||||
version: 6.0.10
|
||||
version: 6.0.11
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
keywords:
|
||||
- recipes
|
|
@ -394,6 +394,7 @@ hide:
|
|||
| tar | CVE-2021-20193 | LOW | 1.30+dfsg-6 | | <details><summary>Expand...</summary><a href="https://bugzilla.redhat.com/show_bug.cgi?id=1917565">https://bugzilla.redhat.com/show_bug.cgi?id=1917565</a><br><a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20193">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20193</a><br><a href="https://git.savannah.gnu.org/cgit/tar.git/commit/?id=d9d4435692150fa8ff68e1b1a473d187cc3fd777">https://git.savannah.gnu.org/cgit/tar.git/commit/?id=d9d4435692150fa8ff68e1b1a473d187cc3fd777</a><br><a href="https://savannah.gnu.org/bugs/?59897">https://savannah.gnu.org/bugs/?59897</a><br><a href="https://security.gentoo.org/glsa/202105-29">https://security.gentoo.org/glsa/202105-29</a><br><a href="https://ubuntu.com/security/notices/USN-5329-1">https://ubuntu.com/security/notices/USN-5329-1</a><br></details> |
|
||||
| util-linux | CVE-2021-37600 | LOW | 2.33.1-0.1 | | <details><summary>Expand...</summary><a href="https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c">https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c</a><br><a href="https://github.com/karelzak/util-linux/issues/1395">https://github.com/karelzak/util-linux/issues/1395</a><br><a href="https://security.netapp.com/advisory/ntap-20210902-0002/">https://security.netapp.com/advisory/ntap-20210902-0002/</a><br></details> |
|
||||
| util-linux | CVE-2022-0563 | LOW | 2.33.1-0.1 | | <details><summary>Expand...</summary><a href="https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u">https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u</a><br></details> |
|
||||
| zlib1g | CVE-2018-25032 | MEDIUM | 1:1.2.11.dfsg-1 | | <details><summary>Expand...</summary><a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032</a><br><a href="https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531">https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531</a><br><a href="https://www.openwall.com/lists/oss-security/2022/03/24/1">https://www.openwall.com/lists/oss-security/2022/03/24/1</a><br></details> |
|
||||
|
||||
**jar**
|
||||
|
||||
|
@ -746,6 +747,7 @@ hide:
|
|||
| tar | CVE-2021-20193 | LOW | 1.30+dfsg-6 | | <details><summary>Expand...</summary><a href="https://bugzilla.redhat.com/show_bug.cgi?id=1917565">https://bugzilla.redhat.com/show_bug.cgi?id=1917565</a><br><a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20193">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20193</a><br><a href="https://git.savannah.gnu.org/cgit/tar.git/commit/?id=d9d4435692150fa8ff68e1b1a473d187cc3fd777">https://git.savannah.gnu.org/cgit/tar.git/commit/?id=d9d4435692150fa8ff68e1b1a473d187cc3fd777</a><br><a href="https://savannah.gnu.org/bugs/?59897">https://savannah.gnu.org/bugs/?59897</a><br><a href="https://security.gentoo.org/glsa/202105-29">https://security.gentoo.org/glsa/202105-29</a><br><a href="https://ubuntu.com/security/notices/USN-5329-1">https://ubuntu.com/security/notices/USN-5329-1</a><br></details> |
|
||||
| util-linux | CVE-2021-37600 | LOW | 2.33.1-0.1 | | <details><summary>Expand...</summary><a href="https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c">https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c</a><br><a href="https://github.com/karelzak/util-linux/issues/1395">https://github.com/karelzak/util-linux/issues/1395</a><br><a href="https://security.netapp.com/advisory/ntap-20210902-0002/">https://security.netapp.com/advisory/ntap-20210902-0002/</a><br></details> |
|
||||
| util-linux | CVE-2022-0563 | LOW | 2.33.1-0.1 | | <details><summary>Expand...</summary><a href="https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u">https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u</a><br></details> |
|
||||
| zlib1g | CVE-2018-25032 | MEDIUM | 1:1.2.11.dfsg-1 | | <details><summary>Expand...</summary><a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032</a><br><a href="https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531">https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531</a><br><a href="https://www.openwall.com/lists/oss-security/2022/03/24/1">https://www.openwall.com/lists/oss-security/2022/03/24/1</a><br></details> |
|
||||
|
||||
**jar**
|
||||
|
|
@ -5,8 +5,8 @@
|
|||
persistence:
|
||||
recipes-config:
|
||||
enabled: "true"
|
||||
mountPath: "/app/config.json"
|
||||
subPath: "config.json"
|
||||
mountPath: "/etc/nginx/nginx.conf"
|
||||
subPath: "nginx.conf"
|
||||
type: "custom"
|
||||
volumeSpec:
|
||||
configMap:
|
Loading…
Reference in New Issue