Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-01-31 14:29:54 +00:00
parent d10f12980a
commit d2a4b77843
19 changed files with 26 additions and 137 deletions

View File

@ -1,6 +1,15 @@
# Changelog<br>
<a name="synapse-0.0.7"></a>
### [synapse-0.0.7](https://github.com/truecharts/apps/compare/synapse-0.0.5...synapse-0.0.7) (2022-01-31)
#### Fix
* Try another way of defining the macaroon secret
<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)

View File

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

View File

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

View File

@ -102,6 +102,8 @@ You will, however, be able to use all values referenced in the common chart here
| probes.startup.path | string | `"/health"` | |
| secret | object | `{}` | |
| securityContext.allowPrivilegeEscalation | bool | `true` | |
| service.federation.ports.federation.port | int | `8448` | |
| service.federation.ports.federation.targetPort | int | `8008` | |
| service.main.ports.main.port | int | `8008` | |
| service.main.ports.main.targetPort | int | `8008` | |
| service.metrics.enabled | bool | `true` | |

View File

@ -18,6 +18,11 @@ service:
main:
port: 8008
targetPort: 8008
federation:
ports:
federation:
port: 8448
targetPort: 8008
replication:
enabled: true
ports:

View File

@ -699,9 +699,9 @@ questions:
schema:
type: int
default: 8008
- variable: replication
label: "Replication Service"
description: "The Replication Service"
- variable: federation
label: "federation Service"
description: "The federation service"
schema:
additional_attrs: true
type: dict
@ -778,8 +778,8 @@ questions:
additional_attrs: true
type: dict
attrs:
- variable: replication
label: "Replication Service Port Configuration"
- variable: federation
label: "federation Service Port Configuration"
schema:
additional_attrs: true
type: dict
@ -789,7 +789,7 @@ questions:
description: "This port exposes the container port on the service"
schema:
type: int
default: 9092
default: 8448
required: true
- variable: advanced
label: "Show Advanced settings"
@ -824,133 +824,7 @@ questions:
description: "The internal(!) port on the container the Application runs on"
schema:
type: int
default: 9092
- variable: metrics
label: "Metrics Service"
description: "The Metrics Service"
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: "Enable the service"
schema:
type: boolean
default: true
hidden: true
- variable: type
label: "Service Type"
description: "ClusterIP's are only internally available, nodePorts expose the container to the host node System, Loadbalancer exposes the service using the system loadbalancer"
schema:
type: string
default: "Simple"
enum:
- value: "Simple"
description: "Simple"
- value: "ClusterIP"
description: "ClusterIP"
- value: "NodePort"
description: "NodePort (Advanced)"
- value: "LoadBalancer"
description: "LoadBalancer (Advanced)"
- variable: loadBalancerIP
label: "LoadBalancer IP"
description: "LoadBalancerIP"
schema:
show_if: [["type", "=", "LoadBalancer"]]
type: string
default: ""
- variable: externalIPs
label: "External IP's"
description: "External IP's"
schema:
show_if: [["type", "=", "LoadBalancer"]]
type: list
default: []
items:
- variable: externalIP
label: "External IP"
schema:
type: string
- variable: ipFamilyPolicy
label: "IP Family Policy"
description: "(Advanced) Specify the ip policy"
schema:
show_if: [["type", "!=", "Simple"]]
type: string
default: "SingleStack"
enum:
- value: "SingleStack"
description: "SingleStack"
- value: "PreferDualStack"
description: "PreferDualStack"
- value: "RequireDualStack"
description: "RequireDualStack"
- variable: ipFamilies
label: "(advanced) IP families"
description: "(advanced) The ip families that should be used"
schema:
show_if: [["type", "!=", "Simple"]]
type: list
default: []
items:
- variable: ipFamily
label: "IP family"
schema:
type: string
- variable: ports
label: "Service's Port(s) Configuration"
schema:
additional_attrs: true
type: dict
attrs:
- variable: metrics
label: "Replication Service Port Configuration"
schema:
additional_attrs: true
type: dict
attrs:
- variable: port
label: "Port"
description: "This port exposes the container port on the service"
schema:
type: int
default: 9093
required: true
- variable: advanced
label: "Show Advanced settings"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: protocol
label: "Port Type"
schema:
type: string
default: "HTTP"
enum:
- value: HTTP
description: "HTTP"
- value: "HTTPS"
description: "HTTPS"
- value: TCP
description: "TCP"
- value: "UDP"
description: "UDP"
- variable: nodePort
label: "Node Port (Optional)"
description: "This port gets exposed to the node. Only considered when service type is NodePort, Simple or LoadBalancer"
schema:
type: int
min: 9000
max: 65535
- variable: targetPort
label: "Target Port"
description: "The internal(!) port on the container the Application runs on"
schema:
type: int
default: 9093
default: 8008
- variable: serviceexpert
group: "Networking and Services"

View File

@ -42,11 +42,10 @@ stringData:
{{- if $previous }}
{{- $msk = ( index $previous.data "macaroon_secret_key" ) }}
macaroon_secret_key: {{ ( index $previous.data "macaroon_secret_key" ) }}
{{- else }}
{{- $msk = randAlphaNum 50 }}
macaroon_secret_key: {{ $msk | quote }}
{{- end }}
macaroon_secret_key: {{ $msk }}
{{- if .Values.coturn.enabled -}}
turn_shared_secret: {{ include "matrix.coturn.sharedSecret" . }}