fix(element): Toggle IPv4-only mode depending on cluster.networking.ipFamilies

This commit is contained in:
MTRNord
2024-12-06 11:39:29 +01:00
committed by Thorsten Roßner
parent 00a1a9394e
commit 627b9c1e84
5 changed files with 17 additions and 8 deletions

View File

@@ -54,4 +54,7 @@ resources:
theme:
{{ .Values.theme | toYaml | nindent 2 }}
nginx:
ipv4Only: {{ if eq .Values.cluster.networking.ipFamilies "IPv4" }}true{{ else }}false{{ end }}
...

View File

@@ -54,4 +54,7 @@ theme:
resources:
{{ .Values.resources.matrixNeoChoiceWidget | toYaml | nindent 2 }}
nginx:
ipv4Only: {{ if eq .Values.cluster.networking.ipFamilies "IPv4" }}true{{ else }}false{{ end }}
...

View File

@@ -59,4 +59,7 @@ resources:
theme:
{{ .Values.theme | toYaml | nindent 2 }}
nginx:
ipv4Only: {{ if eq .Values.cluster.networking.ipFamilies "IPv4" }}true{{ else }}false{{ end }}
...