From 70eeb91083f2ce13ce173aaebd1d027f4514d9a6 Mon Sep 17 00:00:00 2001 From: kjeld Schouten-Lebbing Date: Sat, 3 Jul 2021 11:28:35 +0200 Subject: [PATCH] fix trusted domains for nextcloud --- charts/develop/nextcloud/Chart.yaml | 2 +- charts/develop/nextcloud/templates/_configmap.tpl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/develop/nextcloud/Chart.yaml b/charts/develop/nextcloud/Chart.yaml index 19bc44b61b5..ec1fca9b3fc 100644 --- a/charts/develop/nextcloud/Chart.yaml +++ b/charts/develop/nextcloud/Chart.yaml @@ -35,4 +35,4 @@ sources: - https://github.com/nextcloud/docker - https://github.com/nextcloud/helm type: application -version: 1.0.11 +version: 1.0.12 diff --git a/charts/develop/nextcloud/templates/_configmap.tpl b/charts/develop/nextcloud/templates/_configmap.tpl index c89bdb3f13b..0b1de88d3ee 100644 --- a/charts/develop/nextcloud/templates/_configmap.tpl +++ b/charts/develop/nextcloud/templates/_configmap.tpl @@ -5,9 +5,9 @@ {{- if .Values.ingress.main.enabled }} {{ range $index, $host := .Values.ingress.main.hosts }} {{- if $index }} - {{ $hosts = ( printf "%v %v" $hosts $host ) }} + {{ $hosts = ( printf "%v %v" $hosts $host.host ) }} {{- else }} - {{ $hosts = ( printf "%s" $host ) }} + {{ $hosts = ( printf "%s" $host.host ) }} {{- end }} {{ end }} {{- end }}