Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
81f9827b34
commit
3febe67b70
|
@ -0,0 +1,13 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [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))
|
||||
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
apiVersion: v2
|
||||
appVersion: "2.10.10"
|
||||
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.3
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -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*
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [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))
|
||||
|
||||
|
|
@ -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.
|
@ -0,0 +1,75 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/joplin-server
|
||||
tag: 2.10.10@sha256:5c9c6525af1b8b4a2ba926d13d3df83c53a95428f8344fc2a75c0cfa83a2806e
|
||||
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
|
@ -0,0 +1 @@
|
|||
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
|
@ -0,0 +1 @@
|
|||
{{ include "tc.v1.common.loader.all" . }}
|
|
@ -0,0 +1,5 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/joplin-server.png
|
||||
categories:
|
||||
- media
|
||||
|
||||
screenshots: []
|
Loading…
Reference in New Issue