Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-01-31 11:00:39 +00:00
parent 8840c1977c
commit d10f12980a
19 changed files with 83 additions and 58 deletions

View File

@ -1,6 +1,15 @@
# Changelog<br>
<a name="synapse-0.0.5"></a>
### [synapse-0.0.5](https://github.com/truecharts/apps/compare/synapse-0.0.4...synapse-0.0.5) (2022-01-31)
#### Fix
* fix custom config and don't decode stringData
<a name="synapse-0.0.4"></a>
### [synapse-0.0.4](https://github.com/truecharts/apps/compare/synapse-0.0.3...synapse-0.0.4) (2022-01-31)

View File

@ -6,4 +6,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.0.58
digest: sha256:a28ed48da9797a2e9d6e9a194aa6f65b07fc1cc0169d5ffdb0ba7c44c94806b1
generated: "2022-01-31T10:41:27.760006251Z"
generated: "2022-01-31T10:56:45.06238308Z"

View File

@ -24,7 +24,7 @@ maintainers:
name: synapse
sources: []
type: application
version: 0.0.4
version: 0.0.5
annotations:
truecharts.org/catagories: |
- cloud

View File

@ -287,68 +287,20 @@ questions:
label: "Value"
schema:
type: string
- variable: coturn
- variable: synapse
group: "Container Configuration"
label: "Coturn Configuration"
label: "Synapse Configuration"
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: "Enable Coturn"
- variable: loadCustomConfig
label: "Load Custom Config"
description: "Load custom config located in /data/custom.yaml"
schema:
type: boolean
default: false
- variable: mail
group: "Container Configuration"
label: "Mail Configuration"
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: "Enable Mail"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: from
label: "From: "
schema:
type: string
default: "Matrix <matrix@example.com>"
- variable: riotUrl
label: "Riot URL"
schema:
type: string
default: ""
- variable: host
label: "Host"
schema:
type: string
default: ""
- variable: port
label: "Port"
schema:
type: int
default: 25
- variable: username
label: "Username"
schema:
type: string
default: ""
- variable: password
label: "Password"
schema:
type: string
default: ""
private: true
- variable: requireTransportSecurity
label: "Require Transport Security"
schema:
type: boolean
default: true
- variable: matrix
group: "Container Configuration"
@ -550,6 +502,70 @@ questions:
type: string
default: "WARNING"
- variable: mail
group: "Container Configuration"
label: "Mail Configuration"
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: "Enable Mail"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: from
label: "From: "
schema:
type: string
default: "Matrix <matrix@example.com>"
- variable: riotUrl
label: "Riot URL"
schema:
type: string
default: ""
- variable: host
label: "Host"
schema:
type: string
default: ""
- variable: port
label: "Port"
schema:
type: int
default: 25
- variable: username
label: "Username"
schema:
type: string
default: ""
- variable: password
label: "Password"
schema:
type: string
default: ""
private: true
- variable: requireTransportSecurity
label: "Require Transport Security"
schema:
type: boolean
default: true
- variable: coturn
group: "Container Configuration"
label: "Coturn Configuration"
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: "Enable Coturn"
schema:
type: boolean
default: false
- variable: service
group: "Networking and Services"
label: "Configure Service(s)"

View File

@ -41,11 +41,11 @@ stringData:
{{- end }}
{{- if $previous }}
{{- $msk = ( index $previous.data "macaroon_secret_key" ) | b64dec }}
{{- $msk = ( index $previous.data "macaroon_secret_key" ) }}
macaroon_secret_key: {{ ( index $previous.data "macaroon_secret_key" ) }}
{{- else }}
{{- $msk = randAlphaNum 50 }}
macaroon_secret_key: {{ $msk | b64enc | quote }}
macaroon_secret_key: {{ $msk | quote }}
{{- end }}
{{- if .Values.coturn.enabled -}}