diff --git a/charts/incubator/sogo/CHANGELOG.md b/charts/incubator/sogo/CHANGELOG.md index cc11a161ac7..384068d2ffb 100644 --- a/charts/incubator/sogo/CHANGELOG.md +++ b/charts/incubator/sogo/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [sogo-2.0.1](https://github.com/truecharts/apps/compare/sogo-2.0.0...sogo-2.0.1) (2021-09-10) + +#### Fix + +* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) + + + ### [sogo-2.0.0](https://github.com/truecharts/apps/compare/sogo-1.0.4...sogo-2.0.0) (2021-09-09) diff --git a/charts/incubator/sogo/SCALE/CHANGELOG.md b/charts/incubator/sogo/SCALE/CHANGELOG.md index d04d2a15dfd..8ae9cef4526 100644 --- a/charts/incubator/sogo/SCALE/CHANGELOG.md +++ b/charts/incubator/sogo/SCALE/CHANGELOG.md @@ -1,12 +1,7 @@ - -### [sogo-2.0.0](https://github.com/truecharts/apps/compare/sogo-1.0.4...sogo-2.0.0) (2021-09-09) + +### [sogo-2.0.1](https://github.com/truecharts/apps/compare/sogo-2.0.0...sogo-2.0.1) (2021-09-10) -#### Chore +#### Fix -* update Apps containing initcontainers -not breaking on SCALE- ([#952](https://github.com/truecharts/apps/issues/952)) - -#### Feat - -* Add regex validation to resources CPU and RAM for all apps ([#935](https://github.com/truecharts/apps/issues/935)) -* Pre-commit and tag-appversion syncing ([#926](https://github.com/truecharts/apps/issues/926)) +* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) diff --git a/charts/library/common/CHANGELOG.md b/charts/library/common/CHANGELOG.md index a078f27fc7a..be59598ec38 100644 --- a/charts/library/common/CHANGELOG.md +++ b/charts/library/common/CHANGELOG.md @@ -1,6 +1,19 @@ # Changelog
+ +### [common-7.0.1](https://github.com/truecharts/apps/compare/common-7.0.0...common-7.0.1) (2021-09-10) + +#### Feat + +* have VPN use a hostPath for the configfile instead of configmap ([#953](https://github.com/truecharts/apps/issues/953)) + +#### Fix + +* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) + + + ### [common-7.0.0](https://github.com/truecharts/apps/compare/common-6.14.0...common-7.0.0) (2021-09-09) diff --git a/charts/library/common/SCALE/CHANGELOG.md b/charts/library/common/SCALE/CHANGELOG.md index 5a59ab44568..30c02b5b0a5 100644 --- a/charts/library/common/SCALE/CHANGELOG.md +++ b/charts/library/common/SCALE/CHANGELOG.md @@ -1,7 +1,11 @@ - -### [common-7.0.0](https://github.com/truecharts/apps/compare/common-6.14.0...common-7.0.0) (2021-09-09) + +### [common-7.0.1](https://github.com/truecharts/apps/compare/common-7.0.0...common-7.0.1) (2021-09-10) -#### Refactor +#### Feat -* Restructure common init and additional container layout to dicts ([#950](https://github.com/truecharts/apps/issues/950)) +* have VPN use a hostPath for the configfile instead of configmap ([#953](https://github.com/truecharts/apps/issues/953)) + +#### Fix + +* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) diff --git a/charts/library/common/helm-values.md b/charts/library/common/helm-values.md index 26aba8d22c4..14bcc0eeadc 100644 --- a/charts/library/common/helm-values.md +++ b/charts/library/common/helm-values.md @@ -42,11 +42,11 @@ This chart is used by a lot of our Apps to provide sane defaults and logic. | addons.promtail.loki | string | `""` | The URL to Loki | | addons.promtail.volumeMounts | list | `[]` | Specify a list of volumes that get mounted in the promtail container. At least 1 volumeMount is required! | | addons.vpn | object | See values.yaml | The common chart supports adding a VPN add-on. It can be configured under this key. For more info, check out [our docs](http://docs.k8s-at-home.com/our-helm-charts/common-library-add-ons/#wireguard-vpn) | -| addons.vpn.configFile | string | `nil` | Provide a customized vpn configuration file to be used by the VPN. | -| addons.vpn.configFileSecret | string | `nil` | Reference an existing secret that contains the VPN configuration file The chart expects it to be present under the `vpnConfigfile` key. | +| addons.vpn.configFile | object | `{"enabled":false,"hostPath":"/vpn/vpn.conf","hostPathType":"File","noMount":true,"type":"hostPath"}` | Provide a customized vpn configuration file to be used by the VPN. | +| addons.vpn.configFile.hostPath | string | `"/vpn/vpn.conf"` | Which path on the host should be mounted. | +| addons.vpn.configFile.hostPathType | string | `"File"` | Specifying a hostPathType adds a check before trying to mount the path. See Kubernetes documentation for options. | | addons.vpn.enabled | bool | `false` | Enable running a VPN in the pod to route traffic through a VPN | | addons.vpn.env | object | `{}` | All variables specified here will be added to the vpn sidecar container See the documentation of the VPN image for all config values | -| addons.vpn.livenessProbe | object | `{}` | Optionally specify a livenessProbe, e.g. to check if the connection is still being protected by the VPN | | addons.vpn.openvpn | object | See below | OpenVPN specific configuration | | addons.vpn.openvpn.auth | string | `nil` | Credentials to connect to the VPN Service (used with -a) | | addons.vpn.openvpn.authSecret | string | `nil` | Optionally specify an existing secret that contains the credentials. Credentials should be stored under the `VPN_AUTH` key | diff --git a/charts/stable/authelia/CHANGELOG.md b/charts/stable/authelia/CHANGELOG.md index a920d9c5d78..ee394b7bb08 100644 --- a/charts/stable/authelia/CHANGELOG.md +++ b/charts/stable/authelia/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [authelia-2.0.1](https://github.com/truecharts/apps/compare/authelia-2.0.0...authelia-2.0.1) (2021-09-10) + +#### Fix + +* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) + + + ### [authelia-2.0.0](https://github.com/truecharts/apps/compare/authelia-1.7.3...authelia-2.0.0) (2021-09-09) diff --git a/charts/stable/authelia/SCALE/CHANGELOG.md b/charts/stable/authelia/SCALE/CHANGELOG.md index 130e74ea3cf..0600a30eb11 100644 --- a/charts/stable/authelia/SCALE/CHANGELOG.md +++ b/charts/stable/authelia/SCALE/CHANGELOG.md @@ -1,12 +1,7 @@ - -### [authelia-2.0.0](https://github.com/truecharts/apps/compare/authelia-1.7.3...authelia-2.0.0) (2021-09-09) + +### [authelia-2.0.1](https://github.com/truecharts/apps/compare/authelia-2.0.0...authelia-2.0.1) (2021-09-10) -#### Chore +#### Fix -* update Apps containing initcontainers -not breaking on SCALE- ([#952](https://github.com/truecharts/apps/issues/952)) - -#### Feat - -* Add regex validation to resources CPU and RAM for all apps ([#935](https://github.com/truecharts/apps/issues/935)) -* Pre-commit and tag-appversion syncing ([#926](https://github.com/truecharts/apps/issues/926)) +* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) diff --git a/charts/stable/fireflyiii/CHANGELOG.md b/charts/stable/fireflyiii/CHANGELOG.md index 214facfb2e3..44f1b19e717 100644 --- a/charts/stable/fireflyiii/CHANGELOG.md +++ b/charts/stable/fireflyiii/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [fireflyiii-7.0.1](https://github.com/truecharts/apps/compare/fireflyiii-7.0.0...fireflyiii-7.0.1) (2021-09-10) + +#### Fix + +* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) + + + ### [fireflyiii-7.0.0](https://github.com/truecharts/apps/compare/fireflyiii-6.1.10...fireflyiii-7.0.0) (2021-09-09) diff --git a/charts/stable/fireflyiii/SCALE/CHANGELOG.md b/charts/stable/fireflyiii/SCALE/CHANGELOG.md index 913e95f185b..cc82eefb191 100644 --- a/charts/stable/fireflyiii/SCALE/CHANGELOG.md +++ b/charts/stable/fireflyiii/SCALE/CHANGELOG.md @@ -1,16 +1,7 @@ - -### [fireflyiii-7.0.0](https://github.com/truecharts/apps/compare/fireflyiii-6.1.10...fireflyiii-7.0.0) (2021-09-09) - -#### Chore - -* update Apps containing initcontainers -not breaking on SCALE- ([#952](https://github.com/truecharts/apps/issues/952)) - -#### Feat - -* Add regex validation to resources CPU and RAM for all apps ([#935](https://github.com/truecharts/apps/issues/935)) -* Pre-commit and tag-appversion syncing ([#926](https://github.com/truecharts/apps/issues/926)) + +### [fireflyiii-7.0.1](https://github.com/truecharts/apps/compare/fireflyiii-7.0.0...fireflyiii-7.0.1) (2021-09-10) #### Fix -* correct fireflyiii ports and services ([#945](https://github.com/truecharts/apps/issues/945)) +* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) diff --git a/charts/stable/nextcloud/CHANGELOG.md b/charts/stable/nextcloud/CHANGELOG.md index 890d6a3f343..4403c241413 100644 --- a/charts/stable/nextcloud/CHANGELOG.md +++ b/charts/stable/nextcloud/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [nextcloud-4.0.1](https://github.com/truecharts/apps/compare/nextcloud-4.0.0...nextcloud-4.0.1) (2021-09-10) + +#### Fix + +* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) + + + ### [nextcloud-4.0.0](https://github.com/truecharts/apps/compare/nextcloud-3.7.16...nextcloud-4.0.0) (2021-09-09) diff --git a/charts/stable/nextcloud/SCALE/CHANGELOG.md b/charts/stable/nextcloud/SCALE/CHANGELOG.md index ff516205b9b..f3317eff872 100644 --- a/charts/stable/nextcloud/SCALE/CHANGELOG.md +++ b/charts/stable/nextcloud/SCALE/CHANGELOG.md @@ -1,11 +1,7 @@ - -### [nextcloud-4.0.0](https://github.com/truecharts/apps/compare/nextcloud-3.7.16...nextcloud-4.0.0) (2021-09-09) + +### [nextcloud-4.0.1](https://github.com/truecharts/apps/compare/nextcloud-4.0.0...nextcloud-4.0.1) (2021-09-10) -#### Chore +#### Fix -* update Apps containing initcontainers -not breaking on SCALE- ([#952](https://github.com/truecharts/apps/issues/952)) - -#### Feat - -* Add regex validation to resources CPU and RAM for all apps ([#935](https://github.com/truecharts/apps/issues/935)) +* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) diff --git a/charts/stable/vaultwarden/CHANGELOG.md b/charts/stable/vaultwarden/CHANGELOG.md index 954414db64a..97e7d2c9825 100644 --- a/charts/stable/vaultwarden/CHANGELOG.md +++ b/charts/stable/vaultwarden/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [vaultwarden-7.0.1](https://github.com/truecharts/apps/compare/vaultwarden-7.0.0...vaultwarden-7.0.1) (2021-09-10) + +#### Fix + +* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) + + + ### [vaultwarden-7.0.0](https://github.com/truecharts/apps/compare/vaultwarden-6.1.12...vaultwarden-7.0.0) (2021-09-09) diff --git a/charts/stable/vaultwarden/SCALE/CHANGELOG.md b/charts/stable/vaultwarden/SCALE/CHANGELOG.md index fa4b3d00c97..b85a6d4f026 100644 --- a/charts/stable/vaultwarden/SCALE/CHANGELOG.md +++ b/charts/stable/vaultwarden/SCALE/CHANGELOG.md @@ -1,16 +1,7 @@ - -### [vaultwarden-7.0.0](https://github.com/truecharts/apps/compare/vaultwarden-6.1.12...vaultwarden-7.0.0) (2021-09-09) - -#### Chore - -* update Apps containing initcontainers -not breaking on SCALE- ([#952](https://github.com/truecharts/apps/issues/952)) - -#### Feat - -* Add regex validation to resources CPU and RAM for all apps ([#935](https://github.com/truecharts/apps/issues/935)) -* Pre-commit and tag-appversion syncing ([#926](https://github.com/truecharts/apps/issues/926)) + +### [vaultwarden-7.0.1](https://github.com/truecharts/apps/compare/vaultwarden-7.0.0...vaultwarden-7.0.1) (2021-09-10) #### Fix -* Inject vaultwarden websocket part into ingress ([#946](https://github.com/truecharts/apps/issues/946)) +* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) diff --git a/docs/apps/common/helm-values.md b/docs/apps/common/helm-values.md index 26aba8d22c4..14bcc0eeadc 100644 --- a/docs/apps/common/helm-values.md +++ b/docs/apps/common/helm-values.md @@ -42,11 +42,11 @@ This chart is used by a lot of our Apps to provide sane defaults and logic. | addons.promtail.loki | string | `""` | The URL to Loki | | addons.promtail.volumeMounts | list | `[]` | Specify a list of volumes that get mounted in the promtail container. At least 1 volumeMount is required! | | addons.vpn | object | See values.yaml | The common chart supports adding a VPN add-on. It can be configured under this key. For more info, check out [our docs](http://docs.k8s-at-home.com/our-helm-charts/common-library-add-ons/#wireguard-vpn) | -| addons.vpn.configFile | string | `nil` | Provide a customized vpn configuration file to be used by the VPN. | -| addons.vpn.configFileSecret | string | `nil` | Reference an existing secret that contains the VPN configuration file The chart expects it to be present under the `vpnConfigfile` key. | +| addons.vpn.configFile | object | `{"enabled":false,"hostPath":"/vpn/vpn.conf","hostPathType":"File","noMount":true,"type":"hostPath"}` | Provide a customized vpn configuration file to be used by the VPN. | +| addons.vpn.configFile.hostPath | string | `"/vpn/vpn.conf"` | Which path on the host should be mounted. | +| addons.vpn.configFile.hostPathType | string | `"File"` | Specifying a hostPathType adds a check before trying to mount the path. See Kubernetes documentation for options. | | addons.vpn.enabled | bool | `false` | Enable running a VPN in the pod to route traffic through a VPN | | addons.vpn.env | object | `{}` | All variables specified here will be added to the vpn sidecar container See the documentation of the VPN image for all config values | -| addons.vpn.livenessProbe | object | `{}` | Optionally specify a livenessProbe, e.g. to check if the connection is still being protected by the VPN | | addons.vpn.openvpn | object | See below | OpenVPN specific configuration | | addons.vpn.openvpn.auth | string | `nil` | Credentials to connect to the VPN Service (used with -a) | | addons.vpn.openvpn.authSecret | string | `nil` | Optionally specify an existing secret that contains the credentials. Credentials should be stored under the `VPN_AUTH` key | diff --git a/docs/apps/incubator/sogo/CHANGELOG.md b/docs/apps/incubator/sogo/CHANGELOG.md index cc11a161ac7..384068d2ffb 100644 --- a/docs/apps/incubator/sogo/CHANGELOG.md +++ b/docs/apps/incubator/sogo/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [sogo-2.0.1](https://github.com/truecharts/apps/compare/sogo-2.0.0...sogo-2.0.1) (2021-09-10) + +#### Fix + +* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) + + + ### [sogo-2.0.0](https://github.com/truecharts/apps/compare/sogo-1.0.4...sogo-2.0.0) (2021-09-09) diff --git a/docs/apps/stable/authelia/CHANGELOG.md b/docs/apps/stable/authelia/CHANGELOG.md index a920d9c5d78..ee394b7bb08 100644 --- a/docs/apps/stable/authelia/CHANGELOG.md +++ b/docs/apps/stable/authelia/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [authelia-2.0.1](https://github.com/truecharts/apps/compare/authelia-2.0.0...authelia-2.0.1) (2021-09-10) + +#### Fix + +* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) + + + ### [authelia-2.0.0](https://github.com/truecharts/apps/compare/authelia-1.7.3...authelia-2.0.0) (2021-09-09) diff --git a/docs/apps/stable/fireflyiii/CHANGELOG.md b/docs/apps/stable/fireflyiii/CHANGELOG.md index 214facfb2e3..44f1b19e717 100644 --- a/docs/apps/stable/fireflyiii/CHANGELOG.md +++ b/docs/apps/stable/fireflyiii/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [fireflyiii-7.0.1](https://github.com/truecharts/apps/compare/fireflyiii-7.0.0...fireflyiii-7.0.1) (2021-09-10) + +#### Fix + +* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) + + + ### [fireflyiii-7.0.0](https://github.com/truecharts/apps/compare/fireflyiii-6.1.10...fireflyiii-7.0.0) (2021-09-09) diff --git a/docs/apps/stable/nextcloud/CHANGELOG.md b/docs/apps/stable/nextcloud/CHANGELOG.md index 890d6a3f343..4403c241413 100644 --- a/docs/apps/stable/nextcloud/CHANGELOG.md +++ b/docs/apps/stable/nextcloud/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [nextcloud-4.0.1](https://github.com/truecharts/apps/compare/nextcloud-4.0.0...nextcloud-4.0.1) (2021-09-10) + +#### Fix + +* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) + + + ### [nextcloud-4.0.0](https://github.com/truecharts/apps/compare/nextcloud-3.7.16...nextcloud-4.0.0) (2021-09-09) diff --git a/docs/apps/stable/vaultwarden/CHANGELOG.md b/docs/apps/stable/vaultwarden/CHANGELOG.md index 954414db64a..97e7d2c9825 100644 --- a/docs/apps/stable/vaultwarden/CHANGELOG.md +++ b/docs/apps/stable/vaultwarden/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [vaultwarden-7.0.1](https://github.com/truecharts/apps/compare/vaultwarden-7.0.0...vaultwarden-7.0.1) (2021-09-10) + +#### Fix + +* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) + + + ### [vaultwarden-7.0.0](https://github.com/truecharts/apps/compare/vaultwarden-6.1.12...vaultwarden-7.0.0) (2021-09-09) diff --git a/docs/index.yaml b/docs/index.yaml index 1ac946d5a30..7fa12463de4 100644 --- a/docs/index.yaml +++ b/docs/index.yaml @@ -4207,6 +4207,50 @@ entries: - https://github.com/truecharts/apps/releases/download/appdaemon-0.1.3/appdaemon-0.1.3.tgz version: 0.1.3 authelia: + - apiVersion: v2 + appVersion: 4.30.4 + created: "2021-09-10T13:37:51.777335841Z" + dependencies: + - name: common + repository: https://truecharts.org/ + version: 7.0.0 + - condition: postgresql.enabled + name: postgresql + repository: https://truecharts.org/ + version: 2.0.0 + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 15.3.1 + description: Authelia is a Single Sign-On Multi-Factor portal for web apps + digest: 1fb1c03730bfc5a57384840199a4d2b8f64777a99e7598fa89cb6e6859a9322f + home: https://github.com/truecharts/apps/tree/master/charts/stable/authelia + icon: https://avatars2.githubusercontent.com/u/59122411?s=200&v=4 + keywords: + - authelia + - authentication + - login + - SSO + - Authentication + - Security + - Two-Factor + - U2F + - YubiKey + - Push Notifications + - LDAP + kubeVersion: '>=1.16.0-0' + maintainers: + - email: info@truecharts.org + name: TrueCharts + url: truecharts.org + name: authelia + sources: + - https://github.com/authelia/chartrepo + - https://github.com/authelia/authelia + type: application + urls: + - https://github.com/truecharts/apps/releases/download/authelia-2.0.1/authelia-2.0.1.tgz + version: 2.0.1 - apiVersion: v2 appVersion: 4.30.4 created: "2021-09-09T20:22:15.999207712Z" @@ -16687,6 +16731,30 @@ entries: - https://github.com/truecharts/apps/releases/download/collabora-online-3.1.5/collabora-online-3.1.5.tgz version: 3.1.5 common: + - apiVersion: v2 + appVersion: auto + created: "2021-09-10T13:37:51.961891726Z" + description: Function library for TrueCharts + digest: b8b9f374d758a4a4b65f4811d48666cbb6d6d2764560806b05be86eed79032e1 + home: https://github.com/truecharts/apps/tree/master/charts/common + icon: https://avatars.githubusercontent.com/u/76400755 + keywords: + - truecharts + - library-chart + - common + kubeVersion: '>=1.16.0-0' + maintainers: + - email: info@truecharts.org + name: TrueCharts + url: truecharts.org + - email: kjeld@schouten-lebbing.nl + name: Ornias1993 + url: truecharts.org + name: common + type: library + urls: + - https://github.com/truecharts/apps/releases/download/common-7.0.1/common-7.0.1.tgz + version: 7.0.1 - apiVersion: v2 appVersion: auto created: "2021-09-09T19:50:30.308299971Z" @@ -33721,6 +33789,39 @@ entries: - https://github.com/truecharts/apps/releases/download/external-service-0.0.1/external-service-0.0.1.tgz version: 0.0.1 fireflyiii: + - apiVersion: v2 + appVersion: 5.5.12 + created: "2021-09-10T13:37:52.109577715Z" + dependencies: + - name: common + repository: https://truecharts.org/ + version: 7.0.0 + - condition: postgresql.enabled + name: postgresql + repository: https://truecharts.org/ + version: 2.0.0 + description: A free and open source personal finance manager + digest: 00fa9eb5f98b6cb3e56a983fa766c538062ad1db05930e6d14abbe63f5c68354 + home: https://github.com/firefly-iii/firefly-iii/ + icon: https://www.firefly-iii.org/assets/logo/color.png + keywords: + - fireflyiii + - finacial + kubeVersion: '>=1.16.0-0' + maintainers: + - email: info@truecharts.org + name: TrueCharts + url: truecharts.org + - email: 20650065+warllo54@users.noreply.github.com + name: warllo54 + url: truecharts.org + name: fireflyiii + sources: + - https://github.com/firefly-iii/firefly-iii/ + type: application + urls: + - https://github.com/truecharts/apps/releases/download/fireflyiii-7.0.1/fireflyiii-7.0.1.tgz + version: 7.0.1 - apiVersion: v2 appVersion: 5.5.12 created: "2021-09-09T20:22:16.222282744Z" @@ -87469,6 +87570,45 @@ entries: - https://github.com/truecharts/apps/releases/download/navidrome-3.1.5/navidrome-3.1.5.tgz version: 3.1.5 nextcloud: + - apiVersion: v2 + appVersion: 22.1.1 + created: "2021-09-10T13:37:52.26678648Z" + dependencies: + - name: common + repository: https://truecharts.org/ + version: 7.0.0 + - condition: postgresql.enabled + name: postgresql + repository: https://truecharts.org/ + version: 2.0.0 + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 15.3.1 + description: A private cloud server that puts the control and security of your + own data back into your hands. + digest: d9f3bc25413b2742b9e8e4af532d2b74e0de053312d3b8f7dd8f2ed9876213f6 + home: https://nextcloud.com/ + icon: https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/Nextcloud_Logo.svg/1280px-Nextcloud_Logo.svg.png + keywords: + - nextcloud + - storage + - http + - web + - php + kubeVersion: '>=1.16.0-0' + maintainers: + - email: info@truecharts.org + name: TrueCharts + url: truecharts.org + name: nextcloud + sources: + - https://github.com/nextcloud/docker + - https://github.com/nextcloud/helm + type: application + urls: + - https://github.com/truecharts/apps/releases/download/nextcloud-4.0.1/nextcloud-4.0.1.tgz + version: 4.0.1 - apiVersion: v2 appVersion: 22.1.1 created: "2021-09-09T20:22:16.449256443Z" @@ -144577,6 +144717,39 @@ entries: - https://github.com/truecharts/apps/releases/download/ser2sock-1.0.1/ser2sock-1.0.1.tgz version: 1.0.1 sogo: + - apiVersion: v2 + appVersion: 5.2.0" + created: "2021-09-10T13:37:52.419638411Z" + dependencies: + - name: common + repository: https://truecharts.org/ + version: 7.0.0 + - condition: postgresql.enabled + name: postgresql + repository: https://truecharts.org/ + version: 1.6.6 + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 5.14.2 + description: Groupware package + digest: 67d1c07e9a546d7e984012e3905de213e26cf7b12541b5e678c280d5bc3e58d8 + home: https://github.com/truecharts/apps/tree/master/charts/stable/sogo + icon: https://truecharts.org/_static/img/sogo-icon.png + keywords: + - groupware + kubeVersion: '>=1.16.0-0' + maintainers: + - email: info@truecharts.org + name: TrueCharts + url: truecharts.org + name: sogo + sources: + - https://www.sogo.nu/ + type: application + urls: + - https://github.com/truecharts/apps/releases/download/sogo-2.0.1/sogo-2.0.1.tgz + version: 2.0.1 - apiVersion: v2 appVersion: 5.2.0" created: "2021-09-09T20:22:16.721701361Z" @@ -169523,6 +169696,43 @@ entries: - https://github.com/truecharts/apps/releases/download/unpackerr-1.0.0/unpackerr-1.0.0.tgz version: 1.0.0 vaultwarden: + - apiVersion: v2 + appVersion: 1.22.2 + created: "2021-09-10T13:37:52.551505872Z" + dependencies: + - name: common + repository: https://truecharts.org/ + version: 7.0.0 + - condition: postgresql.enabled + name: postgresql + repository: https://truecharts.org/ + version: 2.0.0 + description: Unofficial Bitwarden compatible server written in Rust + digest: 4d0070e2705cd4ae26905566c87359060416d0ee91650ad83bf5629663524d0f + home: https://github.com/truecharts/apps/tree/master/charts/stable/vaultwarden + icon: https://raw.githubusercontent.com/bitwarden/brand/master/icons/256x256.png + keywords: + - bitwarden + - bitwardenrs + - bitwarden_rs + - vaultwarden + - password + - rust + kubeVersion: '>=1.16.0-0' + maintainers: + - email: info@truecharts.org + name: TrueCharts + url: truecharts.org + - email: kjeld@schouten-lebbing.nl + name: Ornias1993 + url: truecharts.org + name: vaultwarden + sources: + - https://github.com/dani-garcia/vaultwarden + type: application + urls: + - https://github.com/truecharts/apps/releases/download/vaultwarden-7.0.1/vaultwarden-7.0.1.tgz + version: 7.0.1 - apiVersion: v2 appVersion: 1.22.2 created: "2021-09-09T20:22:16.941851817Z" @@ -178171,4 +178381,4 @@ entries: urls: - https://github.com/truecharts/apps/releases/download/zwavejs2mqtt-3.1.5/zwavejs2mqtt-3.1.5.tgz version: 3.1.5 -generated: "2021-09-09T20:22:17.004742491Z" +generated: "2021-09-10T13:37:52.592865505Z"