Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
a7cd656cf6
commit
65b6fde383
|
@ -0,0 +1,8 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [linkwarden-0.0.1]linkwarden-0.0.1 (2023-11-19)
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
apiVersion: v2
|
||||
appVersion: "2.2.1"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 15.0.1
|
||||
description: Linkwarden is a self-hosted, open-source collaborative bookmark manager to collect, organize and archive webpages.
|
||||
home: https://truecharts.org/charts/incubator/linkwarden
|
||||
icon: https://github.com/linkwarden/linkwarden/raw/main/assets/logo.png
|
||||
keywords:
|
||||
- linkwarden
|
||||
- bookmark
|
||||
- manager
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: linkwarden
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/linkwarden
|
||||
- https://github.com/linkwarden/linkwarden
|
||||
version: 0.0.1
|
||||
annotations:
|
||||
truecharts.org/category: bookmarks
|
||||
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,4 @@
|
|||
|
||||
|
||||
## [linkwarden-0.0.1]linkwarden-0.0.1 (2023-11-19)
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
Linkwarden is a self-hosted, open-source collaborative bookmark manager to collect, organize and archive webpages.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/linkwarden](https://truecharts.org/charts/incubator/linkwarden)
|
||||
|
||||
---
|
||||
|
||||
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,67 @@
|
|||
image:
|
||||
repository: ghcr.io/linkwarden/linkwarden
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v2.2.1@sha256:c948cdcf683ec7b6c634eb2a0e184e270e167401d41ef8e82f7ff64c61f39f9c
|
||||
|
||||
config:
|
||||
nextauth_url: "http://example.com"
|
||||
pagination_take_count: 20
|
||||
autoscroll_timeout: 30
|
||||
disable_registration: false
|
||||
archive_limit: 5
|
||||
smtp:
|
||||
enabled: false
|
||||
from: ""
|
||||
server: ""
|
||||
|
||||
securityContext:
|
||||
container:
|
||||
readOnlyRootFilesystem: false
|
||||
runAsGroup: 0
|
||||
runAsUser: 0
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 2985
|
||||
targetPort: 3000
|
||||
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
env:
|
||||
DATABASE_URL:
|
||||
secretKeyRef:
|
||||
name: cnpg-main-urls
|
||||
key: std
|
||||
NEXTAUTH_SECRET:
|
||||
secretKeyRef:
|
||||
name: linkwarden-secrets
|
||||
key: NEXTAUTH_SECRET
|
||||
NEXTAUTH_URL: "{{ .Values.config.nextauth_url }}"
|
||||
PAGINATION_TAKE_COUNT: "{{ .Values.config.pagination_take_count }}"
|
||||
STORAGE_FOLDER: "data"
|
||||
AUTOSCROLL_TIMEOUT: "{{ .Values.config.autoscroll_timeout }}"
|
||||
NEXT_PUBLIC_DISABLE_REGISTRATION: "{{ .Values.config.disable_registration }}"
|
||||
RE_ARCHIVE_LIMIT: "{{ .Values.config.archive_limit }}"
|
||||
NEXT_PUBLIC_EMAIL_PROVIDER: "{{ .Values.config.smtp.enabled }}"
|
||||
EMAIL_FROM: "{{ .Values.config.smtp.from }}"
|
||||
EMAIL_SERVER: "{{ .Values.config.smtp.server }}"
|
||||
|
||||
persistence:
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: "/data/data"
|
||||
|
||||
cnpg:
|
||||
main:
|
||||
enabled: true
|
||||
database: linkwarden
|
||||
user: linkwarden
|
||||
|
||||
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,10 @@
|
|||
{{- define "linkwarden.secrets" -}}
|
||||
{{- $secretName := (printf "%s-linkwarden-secrets" (include "tc.v1.common.lib.chart.names.fullname" $)) }}
|
||||
{{- $secret := randAlphaNum 32 -}}
|
||||
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) -}}
|
||||
{{- $secret = index .data "NEXTAUTH_SECRET" | b64dec -}}
|
||||
{{- end }}
|
||||
enabled: true
|
||||
data:
|
||||
NEXTAUTH_SECRET: {{ $secret }}
|
||||
{{- end -}}
|
|
@ -0,0 +1,11 @@
|
|||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.v1.common.loader.init" . }}
|
||||
|
||||
{{/* Render secrets for Linkwarden */}}
|
||||
{{- $secrets := include "linkwarden.secrets" . | fromYaml -}}
|
||||
{{- if $secrets -}}
|
||||
{{- $_ := set .Values.secret "linkwarden-secrets" $secrets -}}
|
||||
{{- end -}}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.apply" . }}
|
|
@ -0,0 +1,4 @@
|
|||
icon_url: https://github.com/linkwarden/linkwarden/raw/main/assets/logo.png
|
||||
categories:
|
||||
- bookmarks
|
||||
screenshots: []
|
Loading…
Reference in New Issue