lemmy: Update to 0.18.5
Also adds support for specifying additional configuration on top of the main lemmy.hjson
This commit is contained in:
parent
20f151565d
commit
fc53181ec0
3 changed files with 7 additions and 3 deletions
|
@ -3,10 +3,10 @@ apiVersion: v2
|
||||||
name: lemmy
|
name: lemmy
|
||||||
description: A link aggregator and forum for the fediverse
|
description: A link aggregator and forum for the fediverse
|
||||||
icon: https://join-lemmy.org/static/assets/images/lemmy.svg
|
icon: https://join-lemmy.org/static/assets/images/lemmy.svg
|
||||||
appVersion: 0.18.4
|
appVersion: 0.18.5
|
||||||
|
|
||||||
type: application
|
type: application
|
||||||
version: 0.4.4
|
version: 0.4.5
|
||||||
|
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: Alexander Olofsson
|
- name: Alexander Olofsson
|
||||||
|
|
|
@ -50,4 +50,4 @@ data:
|
||||||
{{- if not .Values.pictrs.existingSecret }}
|
{{- if not .Values.pictrs.existingSecret }}
|
||||||
pictrs_apikey: {{ $pictrsApikey | b64enc }}
|
pictrs_apikey: {{ $pictrsApikey | b64enc }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
config.hjson: {{ $config | toPrettyJson | b64enc }}
|
config.hjson: {{ $config | merge (.Values.extraConfig | default dict) | toPrettyJson | b64enc }}
|
||||||
|
|
|
@ -31,6 +31,10 @@ config:
|
||||||
## Requires valid certificates, but is also required for federation support
|
## Requires valid certificates, but is also required for federation support
|
||||||
tls: true
|
tls: true
|
||||||
|
|
||||||
|
## Extra configuration to merge into the main lemmy.hjson file
|
||||||
|
extraConfig: {}
|
||||||
|
# opentelemetry_url: http://otel:4137
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
fullnameOverride: ""
|
fullnameOverride: ""
|
||||||
|
|
Loading…
Reference in a new issue