Commit new App releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
b4656c7ccd
commit
b87ae869ab
|
@ -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"
|
|
@ -1,6 +1,19 @@
|
|||
# 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>
|
||||
### [papermerge-0.0.3](https://github.com/truecharts/apps/compare/papermerge-0.0.2...papermerge-0.0.3) (2021-12-14)
|
||||
|
|
@ -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"
|
|
@ -1,13 +1,13 @@
|
|||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: papermerge
|
||||
version: 0.0.3
|
||||
version: 0.0.4
|
||||
appVersion: "2.0.1"
|
||||
description: Papermerge is an open source document management system (DMS) primarily designed for archiving and retrieving your digital documents.
|
||||
type: application
|
||||
deprecated: false
|
||||
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:
|
||||
- papermerge
|
||||
sources:
|
||||
|
@ -16,7 +16,10 @@ dependencies:
|
|||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.9.21
|
||||
# condition:
|
||||
- condition: redis.enabled
|
||||
name: redis
|
||||
repository: https://truecharts.org
|
||||
version: 1.0.36
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
|
@ -18,6 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
|||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org | common | 8.9.21 |
|
||||
| https://truecharts.org | redis | 1.0.36 |
|
||||
|
||||
## Installing the Chart
|
||||
|
Binary file not shown.
|
@ -12,6 +12,8 @@ You will, however, be able to use all values referenced in the common chart here
|
|||
| Key | Type | Default | Description |
|
||||
|-----|------|---------|-------------|
|
||||
| env.PUID | int | `568` | |
|
||||
| envValueFrom.REDIS_URL.secretKeyRef.key | string | `"url"` | |
|
||||
| envValueFrom.REDIS_URL.secretKeyRef.name | string | `"rediscreds"` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"tccr.io/truecharts/papermerge"` | |
|
||||
| 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` | |
|
||||
| podSecurityContext.runAsGroup | int | `0` | |
|
||||
| podSecurityContext.runAsUser | int | `0` | |
|
||||
| redis.enabled | bool | `true` | |
|
||||
| redis.existingSecret | string | `"rediscreds"` | |
|
||||
| redis.redisUsername | string | `"papermerge"` | |
|
||||
| securityContext.readOnlyRootFilesystem | bool | `false` | |
|
||||
| securityContext.runAsNonRoot | bool | `false` | |
|
||||
| service.main.ports.main.port | int | `10141` | |
|
|
@ -14,6 +14,12 @@ podSecurityContext:
|
|||
env:
|
||||
PUID: 568
|
||||
|
||||
envValueFrom:
|
||||
REDIS_URL:
|
||||
secretKeyRef:
|
||||
name: rediscreds
|
||||
key: url
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
|
@ -27,3 +33,8 @@ persistence:
|
|||
mountPath: "/config"
|
||||
varrun:
|
||||
enabled: true
|
||||
|
||||
redis:
|
||||
enabled: true
|
||||
existingSecret: "rediscreds"
|
||||
redisUsername: papermerge
|
File diff suppressed because one or more lines are too long
|
@ -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:
|
||||
- incubator
|
||||
|
||||
|
|
Loading…
Reference in New Issue