From 55deafd6d4701b8e36bbb99120e71e2f5c2ebf5a Mon Sep 17 00:00:00 2001 From: Itay Grudev Date: Thu, 28 Sep 2023 21:04:25 +0300 Subject: [PATCH] Bug Fix: Incorrect Azure failure message Signed-off-by: Itay Grudev --- charts/cluster/templates/_barman_object_store.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/cluster/templates/_barman_object_store.tpl b/charts/cluster/templates/_barman_object_store.tpl index e2ef228c3..b7a6c6c28 100644 --- a/charts/cluster/templates/_barman_object_store.tpl +++ b/charts/cluster/templates/_barman_object_store.tpl @@ -24,7 +24,7 @@ key: ACCESS_SECRET_KEY {{- else if eq .scope.provider "azure" }} {{- if empty .scope.destinationPath }} - destinationPath: "https://{{ required "You need to specify Azure storageAccount if endpointURL is not specified." .scope.azure.storageAccount }}.{{ .scope.azure.serviceName }}.core.windows.net/{{ .scope.azure.containerName }}{{ .scope.azure.path }}" + destinationPath: "https://{{ required "You need to specify Azure storageAccount if destinationPath is not specified." .scope.azure.storageAccount }}.{{ .scope.azure.serviceName }}.core.windows.net/{{ .scope.azure.containerName }}{{ .scope.azure.path }}" {{- end }} azureCredentials: connectionString: @@ -49,4 +49,4 @@ name: {{ .chartFullname }}-backup-google{{ .secretSuffix }}-creds key: APPLICATION_CREDENTIALS {{- end -}} -{{- end -}} \ No newline at end of file +{{- end -}}