Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-12-18 01:08:41 +00:00
parent b4656c7ccd
commit b87ae869ab
16 changed files with 277 additions and 22 deletions

View File

@ -1,6 +0,0 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 8.9.21
digest: sha256:29937b76d07f882a8d7e24ffdbc0df01638eb45efbda32695bb24015ead912ba
generated: "2021-12-14T20:31:02.310026576Z"

View File

@ -1,6 +1,19 @@
# Changelog<br> # Changelog<br>
<a name="papermerge-0.0.4"></a>
### [papermerge-0.0.4](https://github.com/truecharts/apps/compare/papermerge-0.0.3...papermerge-0.0.4) (2021-12-18)
#### Chore
* App-Icon Organization ([#1539](https://github.com/truecharts/apps/issues/1539))
#### Feat
* add redis support ([#1554](https://github.com/truecharts/apps/issues/1554))
<a name="papermerge-0.0.3"></a> <a name="papermerge-0.0.3"></a>
### [papermerge-0.0.3](https://github.com/truecharts/apps/compare/papermerge-0.0.2...papermerge-0.0.3) (2021-12-14) ### [papermerge-0.0.3](https://github.com/truecharts/apps/compare/papermerge-0.0.2...papermerge-0.0.3) (2021-12-14)

View File

@ -0,0 +1,9 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 8.9.21
- name: redis
repository: https://truecharts.org
version: 1.0.36
digest: sha256:bb91b911394dc05481a7df5dae5840c73cf0c494f746fd068d018d1b31eb6935
generated: "2021-12-18T01:05:07.659712949Z"

View File

@ -1,13 +1,13 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: papermerge name: papermerge
version: 0.0.3 version: 0.0.4
appVersion: "2.0.1" appVersion: "2.0.1"
description: Papermerge is an open source document management system (DMS) primarily designed for archiving and retrieving your digital documents. description: Papermerge is an open source document management system (DMS) primarily designed for archiving and retrieving your digital documents.
type: application type: application
deprecated: false deprecated: false
home: https://github.com/truecharts/apps/tree/master/charts/stable/papermerge home: https://github.com/truecharts/apps/tree/master/charts/stable/papermerge
icon: https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/papermerge-icon.png icon: https://truecharts.org/_static/img/appicons/papermerge-icon.png
keywords: keywords:
- papermerge - papermerge
sources: sources:
@ -16,7 +16,10 @@ dependencies:
- name: common - name: common
repository: https://truecharts.org repository: https://truecharts.org
version: 8.9.21 version: 8.9.21
# condition: - condition: redis.enabled
name: redis
repository: https://truecharts.org
version: 1.0.36
maintainers: maintainers:
- email: info@truecharts.org - email: info@truecharts.org
name: TrueCharts name: TrueCharts

View File

@ -18,6 +18,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
| https://truecharts.org | common | 8.9.21 | | https://truecharts.org | common | 8.9.21 |
| https://truecharts.org | redis | 1.0.36 |
## Installing the Chart ## Installing the Chart

Binary file not shown.

View File

@ -12,6 +12,8 @@ You will, however, be able to use all values referenced in the common chart here
| Key | Type | Default | Description | | Key | Type | Default | Description |
|-----|------|---------|-------------| |-----|------|---------|-------------|
| env.PUID | int | `568` | | | env.PUID | int | `568` | |
| envValueFrom.REDIS_URL.secretKeyRef.key | string | `"url"` | |
| envValueFrom.REDIS_URL.secretKeyRef.name | string | `"rediscreds"` | |
| image.pullPolicy | string | `"IfNotPresent"` | | | image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"tccr.io/truecharts/papermerge"` | | | image.repository | string | `"tccr.io/truecharts/papermerge"` | |
| image.tag | string | `"v2.0.1"` | | | image.tag | string | `"v2.0.1"` | |
@ -20,6 +22,9 @@ You will, however, be able to use all values referenced in the common chart here
| persistence.varrun.enabled | bool | `true` | | | persistence.varrun.enabled | bool | `true` | |
| podSecurityContext.runAsGroup | int | `0` | | | podSecurityContext.runAsGroup | int | `0` | |
| podSecurityContext.runAsUser | int | `0` | | | podSecurityContext.runAsUser | int | `0` | |
| redis.enabled | bool | `true` | |
| redis.existingSecret | string | `"rediscreds"` | |
| redis.redisUsername | string | `"papermerge"` | |
| securityContext.readOnlyRootFilesystem | bool | `false` | | | securityContext.readOnlyRootFilesystem | bool | `false` | |
| securityContext.runAsNonRoot | bool | `false` | | | securityContext.runAsNonRoot | bool | `false` | |
| service.main.ports.main.port | int | `10141` | | | service.main.ports.main.port | int | `10141` | |

View File

@ -14,6 +14,12 @@ podSecurityContext:
env: env:
PUID: 568 PUID: 568
envValueFrom:
REDIS_URL:
secretKeyRef:
name: rediscreds
key: url
service: service:
main: main:
ports: ports:
@ -27,3 +33,8 @@ persistence:
mountPath: "/config" mountPath: "/config"
varrun: varrun:
enabled: true enabled: true
redis:
enabled: true
existingSecret: "rediscreds"
redisUsername: papermerge

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
icon_url: https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/papermerge-icon.png icon_url: https://truecharts.org/_static/img/appicons/papermerge-icon.png
categories: categories:
- incubator - incubator