diff --git a/changelog.d/3-bug-fixes/pr-1677 b/changelog.d/3-bug-fixes/pr-1677 new file mode 100644 index 0000000000..21385b64e1 --- /dev/null +++ b/changelog.d/3-bug-fixes/pr-1677 @@ -0,0 +1 @@ +Fix an issue related to installing the SFT helm chart as a sub chart to the wire-server chart. diff --git a/charts/sftd/templates/configmap-join-call.yaml b/charts/sftd/templates/configmap-join-call.yaml index 6388574146..fd4ec86717 100644 --- a/charts/sftd/templates/configmap-join-call.yaml +++ b/charts/sftd/templates/configmap-join-call.yaml @@ -14,7 +14,7 @@ data: location /healthz { return 204; } location ~ ^/sfts/([a-z0-9\-]+)/(.*) { - proxy_pass http://$1.sftd.${POD_NAMESPACE}.svc.cluster.local:8585/$2; + proxy_pass http://$1.{{ include "sftd.fullname" . }}.${POD_NAMESPACE}.svc.cluster.local:8585/$2; } }