Skip to content

Commit 8f5075c

Browse files
committed
Correctly template hostnames in NOTES.txt
1 parent 1d2fc54 commit 8f5075c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

charts/matrix-stack/templates/NOTES.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ kubectl exec -n {{ $.Release.Namespace }} -it deployment/{{ $.Release.Name }}-ma
3030

3131
{{- if and $.Values.elementWeb.enabled $.Values.elementWeb.ingress.host }}
3232

33-
Your chat client is available at: https://{{ $.Values.elementWeb.ingress.host }}
33+
Your chat client is available at: https://{{ tpl $.Values.elementWeb.ingress.host $ }}
3434
{{- end }}
3535
{{- if and $.Values.matrixAuthenticationService.enabled $.Values.matrixAuthenticationService.ingress.host }}
3636

37-
You can manage your account at: https://{{ $.Values.matrixAuthenticationService.ingress.host }}
37+
You can manage your account at: https://{{ tpl $.Values.matrixAuthenticationService.ingress.host $ }}
3838
{{- end }}
3939
{{- if $.Values.wellKnownDelegation.enabled }}
4040

41-
To successfully federate, make sure that the Well-Known Delegation works properly using the matrix-federation-tester: https://federationtester.matrix.org/#{{ $.Values.serverName }}
41+
To successfully federate, make sure that the Well-Known Delegation works properly using the matrix-federation-tester: https://federationtester.matrix.org/#{{ tpl $.Values.serverName $ }}
4242
{{- end }}

newsfragments/791.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix templated `<component>.ingress.host` values not being rendered correctly in `NOTES.txt`.

0 commit comments

Comments
 (0)