From 5aa5fd3cd17d2770a1919be0ab40d779373b6385 Mon Sep 17 00:00:00 2001 From: Elmar Kresse Date: Sun, 10 Aug 2025 17:59:17 +0200 Subject: [PATCH] fix: update path for Google Site Verification --- charts/templates/deployment-frontend.yaml | 2 +- charts/values.yaml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/charts/templates/deployment-frontend.yaml b/charts/templates/deployment-frontend.yaml index 52bebc4..b811553 100644 --- a/charts/templates/deployment-frontend.yaml +++ b/charts/templates/deployment-frontend.yaml @@ -36,7 +36,7 @@ spec: volumeMounts: {{- if .Values.production }} - name: configmap-google - mountPath: /{{ .Values.frontend.googleSiteVerification }}.html + mountPath: "{{ .Values.frontend.htmlRootPath }}/{{ .Values.frontend.googleSiteVerification }}.html" subPath: {{ .Values.frontend.googleSiteVerification }}.html readOnly: true {{- end }} diff --git a/charts/values.yaml b/charts/values.yaml index 111b101..aa5a968 100644 --- a/charts/values.yaml +++ b/charts/values.yaml @@ -28,6 +28,7 @@ frontend: name: frontend host: &frontend_host "FRONTEND_URL" googleSiteVerification: "PLACEHOLDER" + htmlRootPath: "/opt/bitnami/nginx/html" replicas: 1 image: name: "PLACEHOLDER"