Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions charts/linkwarden/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apiVersion: v2
appVersion: 2.5.3
kubeVersion: ">=1.26.0-0"
name: linkwarden
version: 0.3.3
version: 0.3.4
dependencies:
- name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
Expand Down Expand Up @@ -51,5 +51,5 @@ annotations:
org.opencontainers.image.licenses: "MIT"
# ref: https://artifacthub.io/docs/topics/annotations/helm/
artifacthub.io/changes: |
- kind: removed
description: convert 'existingSecret' from object to string and fixed key to 'uri'
- kind: fixed
description: add missing env to disable registration
3 changes: 3 additions & 0 deletions charts/linkwarden/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ data:
{{- end }}
AUTOSCROLL_TIMEOUT: {{ .Values.linkwarden.autoscrollTimeout | quote }}
RE_ARCHIVE_LIMIT: {{ .Values.linkwarden.rearchiveLimit | quote }}
{{- if .Values.linkwarden.auth.disableRegistration }}
NEXT_PUBLIC_DISABLE_REGISTRATION: {{ .Values.linkwarden.auth.disableRegistration | quote }}
{{- end }}
{{- if .Values.linkwarden.maxFileSize }}
NEXT_PUBLIC_MAX_FILE_SIZE: {{ .Values.linkwarden.maxFileSize | quote }}
{{- end }}
Expand Down