diff --git a/incubator/vikunja/0.0.5/CHANGELOG.md b/incubator/vikunja/0.0.6/CHANGELOG.md similarity index 83% rename from incubator/vikunja/0.0.5/CHANGELOG.md rename to incubator/vikunja/0.0.6/CHANGELOG.md index f9aa572686..204b431f49 100644 --- a/incubator/vikunja/0.0.5/CHANGELOG.md +++ b/incubator/vikunja/0.0.6/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [vikunja-0.0.6](https://github.com/truecharts/apps/compare/vikunja-0.0.5...vikunja-0.0.6) (2022-04-20) + +#### Fix + +* different ports between proxy and frontend ([#2520](https://github.com/truecharts/apps/issues/2520)) + + + ### [vikunja-0.0.5](https://github.com/truecharts/apps/compare/vikunja-0.0.4...vikunja-0.0.5) (2022-04-19) diff --git a/incubator/vikunja/0.0.5/Chart.lock b/incubator/vikunja/0.0.6/Chart.lock similarity index 88% rename from incubator/vikunja/0.0.5/Chart.lock rename to incubator/vikunja/0.0.6/Chart.lock index c3ce9697f9..27546a7f42 100644 --- a/incubator/vikunja/0.0.5/Chart.lock +++ b/incubator/vikunja/0.0.6/Chart.lock @@ -9,4 +9,4 @@ dependencies: repository: https://charts.truecharts.org version: 2.0.34 digest: sha256:60a5fa7853f4f5cec9e80b3b4e1905c74845ddb8057a338a454a165f15f44950 -generated: "2022-04-19T21:23:13.060924977Z" +generated: "2022-04-20T06:13:24.352987098Z" diff --git a/incubator/vikunja/0.0.5/Chart.yaml b/incubator/vikunja/0.0.6/Chart.yaml similarity index 98% rename from incubator/vikunja/0.0.5/Chart.yaml rename to incubator/vikunja/0.0.6/Chart.yaml index 9beb9f07ab..8631c811cf 100644 --- a/incubator/vikunja/0.0.5/Chart.yaml +++ b/incubator/vikunja/0.0.6/Chart.yaml @@ -25,7 +25,7 @@ maintainers: name: vikunja sources: - https://vikunja.io/docs -version: 0.0.5 +version: 0.0.6 annotations: truecharts.org/catagories: | - productivity diff --git a/incubator/vikunja/0.0.5/README.md b/incubator/vikunja/0.0.6/README.md similarity index 100% rename from incubator/vikunja/0.0.5/README.md rename to incubator/vikunja/0.0.6/README.md diff --git a/incubator/vikunja/0.0.5/app-readme.md b/incubator/vikunja/0.0.6/app-readme.md similarity index 100% rename from incubator/vikunja/0.0.5/app-readme.md rename to incubator/vikunja/0.0.6/app-readme.md diff --git a/incubator/vikunja/0.0.5/charts/common-9.2.9.tgz b/incubator/vikunja/0.0.6/charts/common-9.2.9.tgz similarity index 100% rename from incubator/vikunja/0.0.5/charts/common-9.2.9.tgz rename to incubator/vikunja/0.0.6/charts/common-9.2.9.tgz diff --git a/incubator/vikunja/0.0.5/charts/postgresql-7.0.42.tgz b/incubator/vikunja/0.0.6/charts/postgresql-7.0.42.tgz similarity index 100% rename from incubator/vikunja/0.0.5/charts/postgresql-7.0.42.tgz rename to incubator/vikunja/0.0.6/charts/postgresql-7.0.42.tgz diff --git a/incubator/vikunja/0.0.5/charts/redis-2.0.34.tgz b/incubator/vikunja/0.0.6/charts/redis-2.0.34.tgz similarity index 100% rename from incubator/vikunja/0.0.5/charts/redis-2.0.34.tgz rename to incubator/vikunja/0.0.6/charts/redis-2.0.34.tgz diff --git a/incubator/vikunja/0.0.5/ix_values.yaml b/incubator/vikunja/0.0.6/ix_values.yaml similarity index 94% rename from incubator/vikunja/0.0.5/ix_values.yaml rename to incubator/vikunja/0.0.6/ix_values.yaml index 33afa5c144..7bed861a16 100644 --- a/incubator/vikunja/0.0.5/ix_values.yaml +++ b/incubator/vikunja/0.0.6/ix_values.yaml @@ -29,7 +29,7 @@ env: VIKUNJA_DATABASE_DATABASE: "{{ .Values.postgresql.postgresDatabase }}" VIKUNJA_SERVICE_TIMEZONE: "{{ .Values.TZ }}" # User Defined - VIKUNJA_SERVICE_FRONTENDURL: "http://localhost:80" + VIKUNJA_SERVICE_FRONTENDURL: "http://localhost:8080" VIKUNJA_SERVICE_JWTTTL: 259200 VIKUNJA_SERVICE_JWTTTLLONG: 2592000 VIKUNJA_SERVICE_MAXITEMSPERPAGE: 50 @@ -74,17 +74,20 @@ service: ports: main: port: 10220 - targetPort: 80 + targetPort: 8080 additionalContainers: frontend: name: frontend image: "{{ .Values.frontendImage.repository }}:{{ .Values.frontendImage.tag }}" + env: + - name: VIKUNJA_HTTP_PORT + value: 8081 proxy: name: proxy image: "{{ .Values.nginxImage.repository }}:{{ .Values.nginxImage.tag }}" ports: - - containerPort: 80 + - containerPort: 8080 name: main volumeMounts: - name: vikunja-config diff --git a/incubator/vikunja/0.0.5/questions.yaml b/incubator/vikunja/0.0.6/questions.yaml similarity index 100% rename from incubator/vikunja/0.0.5/questions.yaml rename to incubator/vikunja/0.0.6/questions.yaml diff --git a/incubator/vikunja/0.0.5/security.md b/incubator/vikunja/0.0.6/security.md similarity index 99% rename from incubator/vikunja/0.0.5/security.md rename to incubator/vikunja/0.0.6/security.md index 2e383c3c62..01239493dc 100644 --- a/incubator/vikunja/0.0.5/security.md +++ b/incubator/vikunja/0.0.6/security.md @@ -123,7 +123,7 @@ hide: tccr.io/truecharts/alpine:v3.15.2@sha256:29ed3480a0ee43f7af681fed5d4fc215516abf1c41eade6938b26d8c9c2c7583 tccr.io/truecharts/postgresql:v14.2.0@sha256:a5c260910866d65cef95aa623141abf4eb4241bb239d19b7d1cb769c6f2915c6 tccr.io/truecharts/vikunja-api:v0.18.1@sha256:c79ee38ad40783d6098f302735ca0388b938230aa8f1c6cddfa7a903e2191389 - - 'tccr.io/truecharts/vikunja-frontend:v0.18.2@sha256:a5b2600ad6854e34d4ded50504b89dc37189ac80140edfbfbcbb25c1124b88ab' + 'tccr.io/truecharts/vikunja-frontend:v0.18.2@sha256:a5b2600ad6854e34d4ded50504b89dc37189ac80140edfbfbcbb25c1124b88ab' - 'tccr.io/truecharts/nginx:v1.21.6@sha256:e530cd55de35803870c5c54ff5140f79807137937f7cfd9841fba73bee83d554' tccr.io/truecharts/alpine:v3.15.2@sha256:29ed3480a0ee43f7af681fed5d4fc215516abf1c41eade6938b26d8c9c2c7583 tccr.io/truecharts/alpine:v3.15.2@sha256:29ed3480a0ee43f7af681fed5d4fc215516abf1c41eade6938b26d8c9c2c7583 @@ -446,6 +446,7 @@ hide: | Package | Vulnerability | Severity | Installed Version | Fixed Version | Links | |:----------------|:------------------:|:-----------:|:------------------:|:-------------:|-----------------------------------------| +| golang.org/x/crypto | CVE-2022-27191 | HIGH | v0.0.0-20210817164053-32db794688a5 | 0.0.0-20220315160706-3147a52a75dd |
Expand...https://access.redhat.com/security/cve/CVE-2022-27191
https://github.com/advisories/GHSA-8c26-wmh5-6g9v
https://groups.google.com/g/golang-announce
https://groups.google.com/g/golang-announce/c/-cp44ypCT5s
https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ
https://nvd.nist.gov/vuln/detail/CVE-2022-27191
| | golang.org/x/text | CVE-2021-38561 | UNKNOWN | v0.3.6 | 0.3.7 |
Expand...https://go-review.googlesource.com/c/text/+/340830
https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f
https://pkg.go.dev/vuln/GO-2021-0113
| @@ -455,8 +456,6 @@ hide: - - #### Container: tccr.io/truecharts/alpine:v3.15.2@sha256:29ed3480a0ee43f7af681fed5d4fc215516abf1c41eade6938b26d8c9c2c7583 (alpine 3.15.2) diff --git a/incubator/vikunja/0.0.5/templates/_secrets.tpl b/incubator/vikunja/0.0.6/templates/_secrets.tpl similarity index 100% rename from incubator/vikunja/0.0.5/templates/_secrets.tpl rename to incubator/vikunja/0.0.6/templates/_secrets.tpl diff --git a/incubator/vikunja/0.0.5/templates/common.yaml b/incubator/vikunja/0.0.6/templates/common.yaml similarity index 100% rename from incubator/vikunja/0.0.5/templates/common.yaml rename to incubator/vikunja/0.0.6/templates/common.yaml diff --git a/incubator/vikunja/0.0.5/templates/configmap.yaml b/incubator/vikunja/0.0.6/templates/configmap.yaml similarity index 87% rename from incubator/vikunja/0.0.5/templates/configmap.yaml rename to incubator/vikunja/0.0.6/templates/configmap.yaml index 385b87ad65..16a6683cc3 100644 --- a/incubator/vikunja/0.0.5/templates/configmap.yaml +++ b/incubator/vikunja/0.0.6/templates/configmap.yaml @@ -8,10 +8,10 @@ metadata: data: nginx-config: |- server { - listen 80; + listen 8080; location / { - proxy_pass http://localhost:80; + proxy_pass http://localhost:8081; } location ~* ^/(api|dav|\.well-known)/ { diff --git a/incubator/vikunja/0.0.5/values.yaml b/incubator/vikunja/0.0.6/values.yaml similarity index 100% rename from incubator/vikunja/0.0.5/values.yaml rename to incubator/vikunja/0.0.6/values.yaml