Commit released Helm Chart and docs for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2021-09-10 13:37:54 +00:00
parent 982297ec17
commit 9bb6f4af88
20 changed files with 346 additions and 61 deletions

View File

@@ -1,6 +1,15 @@
# Changelog<br>
<a name="sogo-2.0.1"></a>
### [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))
<a name="sogo-2.0.0"></a>
### [sogo-2.0.0](https://github.com/truecharts/apps/compare/sogo-1.0.4...sogo-2.0.0) (2021-09-09)

View File

@@ -1,12 +1,7 @@
<a name="sogo-2.0.0"></a>
### [sogo-2.0.0](https://github.com/truecharts/apps/compare/sogo-1.0.4...sogo-2.0.0) (2021-09-09)
<a name="sogo-2.0.1"></a>
### [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))

View File

@@ -1,6 +1,19 @@
# Changelog<br>
<a name="common-7.0.1"></a>
### [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))
<a name="common-7.0.0"></a>
### [common-7.0.0](https://github.com/truecharts/apps/compare/common-6.14.0...common-7.0.0) (2021-09-09)

View File

@@ -1,7 +1,11 @@
<a name="common-7.0.0"></a>
### [common-7.0.0](https://github.com/truecharts/apps/compare/common-6.14.0...common-7.0.0) (2021-09-09)
<a name="common-7.0.1"></a>
### [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))

View File

@@ -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 |

View File

@@ -1,6 +1,15 @@
# Changelog<br>
<a name="authelia-2.0.1"></a>
### [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))
<a name="authelia-2.0.0"></a>
### [authelia-2.0.0](https://github.com/truecharts/apps/compare/authelia-1.7.3...authelia-2.0.0) (2021-09-09)

View File

@@ -1,12 +1,7 @@
<a name="authelia-2.0.0"></a>
### [authelia-2.0.0](https://github.com/truecharts/apps/compare/authelia-1.7.3...authelia-2.0.0) (2021-09-09)
<a name="authelia-2.0.1"></a>
### [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))

View File

@@ -1,6 +1,15 @@
# Changelog<br>
<a name="fireflyiii-7.0.1"></a>
### [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))
<a name="fireflyiii-7.0.0"></a>
### [fireflyiii-7.0.0](https://github.com/truecharts/apps/compare/fireflyiii-6.1.10...fireflyiii-7.0.0) (2021-09-09)

View File

@@ -1,16 +1,7 @@
<a name="fireflyiii-7.0.0"></a>
### [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))
<a name="fireflyiii-7.0.1"></a>
### [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))

View File

@@ -1,6 +1,15 @@
# Changelog<br>
<a name="nextcloud-4.0.1"></a>
### [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))
<a name="nextcloud-4.0.0"></a>
### [nextcloud-4.0.0](https://github.com/truecharts/apps/compare/nextcloud-3.7.16...nextcloud-4.0.0) (2021-09-09)

View File

@@ -1,11 +1,7 @@
<a name="nextcloud-4.0.0"></a>
### [nextcloud-4.0.0](https://github.com/truecharts/apps/compare/nextcloud-3.7.16...nextcloud-4.0.0) (2021-09-09)
<a name="nextcloud-4.0.1"></a>
### [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))

View File

@@ -1,6 +1,15 @@
# Changelog<br>
<a name="vaultwarden-7.0.1"></a>
### [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))
<a name="vaultwarden-7.0.0"></a>
### [vaultwarden-7.0.0](https://github.com/truecharts/apps/compare/vaultwarden-6.1.12...vaultwarden-7.0.0) (2021-09-09)

View File

@@ -1,16 +1,7 @@
<a name="vaultwarden-7.0.0"></a>
### [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))
<a name="vaultwarden-7.0.1"></a>
### [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))

View File

@@ -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 |

View File

@@ -1,6 +1,15 @@
# Changelog<br>
<a name="sogo-2.0.1"></a>
### [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))
<a name="sogo-2.0.0"></a>
### [sogo-2.0.0](https://github.com/truecharts/apps/compare/sogo-1.0.4...sogo-2.0.0) (2021-09-09)

View File

@@ -1,6 +1,15 @@
# Changelog<br>
<a name="authelia-2.0.1"></a>
### [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))
<a name="authelia-2.0.0"></a>
### [authelia-2.0.0](https://github.com/truecharts/apps/compare/authelia-1.7.3...authelia-2.0.0) (2021-09-09)

View File

@@ -1,6 +1,15 @@
# Changelog<br>
<a name="fireflyiii-7.0.1"></a>
### [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))
<a name="fireflyiii-7.0.0"></a>
### [fireflyiii-7.0.0](https://github.com/truecharts/apps/compare/fireflyiii-6.1.10...fireflyiii-7.0.0) (2021-09-09)

View File

@@ -1,6 +1,15 @@
# Changelog<br>
<a name="nextcloud-4.0.1"></a>
### [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))
<a name="nextcloud-4.0.0"></a>
### [nextcloud-4.0.0](https://github.com/truecharts/apps/compare/nextcloud-3.7.16...nextcloud-4.0.0) (2021-09-09)

View File

@@ -1,6 +1,15 @@
# Changelog<br>
<a name="vaultwarden-7.0.1"></a>
### [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))
<a name="vaultwarden-7.0.0"></a>
### [vaultwarden-7.0.0](https://github.com/truecharts/apps/compare/vaultwarden-6.1.12...vaultwarden-7.0.0) (2021-09-09)

View File

@@ -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"