Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-07-31 12:41:05 +00:00
parent ba27fe0ec6
commit da8a964403
11 changed files with 2247 additions and 0 deletions

View File

@ -0,0 +1,22 @@
**Important:**
*for the complete changelog, please refer to the website*
## [joplin-server-13.0.4](https://github.com/truecharts/charts/compare/joplin-server-13.0.3...joplin-server-13.0.4) (2023-07-31)
### Chore
- update container image tccr.io/truecharts/joplin-server to v2.12.1 ([#11090](https://github.com/truecharts/charts/issues/11090))
## [joplin-server-13.0.3](https://github.com/truecharts/charts/compare/joplin-server-13.0.2...joplin-server-13.0.3) (2023-07-31)
### Feat
- Return to Stable ([#11067](https://github.com/truecharts/charts/issues/11067))

View File

@ -0,0 +1,29 @@
apiVersion: v2
appVersion: "2.12.1"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 13.2.2
deprecated: false
description: Allows you to sync any Joplin client.
home: https://truecharts.org/charts/stable/joplin-server
icon: https://truecharts.org/img/hotlink-ok/chart-icons/joplin-server.png
keywords:
- joplin
- notes
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: joplin-server
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/joplin-server
- https://github.com/laurent22/joplin/tree/dev/packages/server
- https://github.com/laurent22/joplin
type: application
version: 13.0.4
annotations:
truecharts.org/catagories: |
- media
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,27 @@
# README
## General Info
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
However only installations using the TrueNAS SCALE Apps system are supported.
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/)
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
## Support
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro).
- See the [Website](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
---
## Sponsor TrueCharts
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
*All Rights Reserved - The TrueCharts Project*

View File

@ -0,0 +1,9 @@
## [joplin-server-13.0.4](https://github.com/truecharts/charts/compare/joplin-server-13.0.3...joplin-server-13.0.4) (2023-07-31)
### Chore
- update container image tccr.io/truecharts/joplin-server to v2.12.1 ([#11090](https://github.com/truecharts/charts/issues/11090))

View File

@ -0,0 +1,8 @@
Allows you to sync any Joplin client.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/joplin-server](https://truecharts.org/charts/stable/joplin-server)
---
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!

Binary file not shown.

View File

@ -0,0 +1,75 @@
image:
repository: tccr.io/truecharts/joplin-server
tag: v2.12.1@sha256:12718b37cf427e7016dc159e3037f7657b31cfb6462959ac0074448e7a754e73
pullPolicy: IfNotPresent
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsUser: 0
runAsGroup: 0
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
path: "/api/ping"
port: "{{ .Values.service.main.ports.main.port }}"
httpHeaders:
Host: '{{ tpl .Values.workload.main.podSpec.containers.main.env.APP_BASE_URL $ | replace "https://" "" | replace "http://" "" }}'
readiness:
path: "/api/ping"
port: "{{ .Values.service.main.ports.main.port }}"
httpHeaders:
Host: '{{ tpl .Values.workload.main.podSpec.containers.main.env.APP_BASE_URL $ | replace "https://" "" | replace "http://" "" }}'
startup:
type: tcp
port: "{{ .Values.service.main.ports.main.port }}"
env:
APP_BASE_URL: ""
APP_PORT: "{{ .Values.service.main.ports.main.port }}"
DB_CLIENT: "pg"
POSTGRES_DATABASE: "{{ .Values.cnpg.main.database }}"
POSTGRES_USER: "{{ .Values.cnpg.main.user }}"
POSTGRES_PORT: "5432"
POSTGRES_PASSWORD:
secretKeyRef:
name: cnpg-main-user
key: password
POSTGRES_HOST:
secretKeyRef:
name: cnpg-main-urls
key: host
MAILER_ENABLED: 0
MAILER_HOST: ""
MAILER_PORT: 465
MAILER_SECURE: true
MAILER_AUTH_USER: ""
MAILER_AUTH_PASSWORD: ""
MAILER_NOREPLY_NAME: ""
MAILER_NOREPLY_EMAIL: ""
service:
main:
ports:
main:
port: 22300
persistence:
config:
enabled: true
mountPath: "/config"
cnpg:
main:
enabled: true
user: joplin
database: joplin
portal:
open:
enabled: true

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}

View File

@ -0,0 +1 @@
{{ include "tc.v1.common.loader.all" . }}

View File