From e0f721a1623a955869f4dc6ef38f81a315b8f330 Mon Sep 17 00:00:00 2001 From: alexandrev-tibco Date: Sat, 18 Apr 2026 14:09:22 +0200 Subject: [PATCH] Helm: add feedbackWebhookUrl support to frontend deployment (chart 0.1.3) Adds VITE_FEEDBACK_WEBHOOK_URL env var passed to frontend container, wired to frontend.feedbackWebhookUrl in values.yaml. Co-Authored-By: Claude Sonnet 4.6 --- charts/xslt-playground/Chart.yaml | 2 +- charts/xslt-playground/templates/frontend-deployment.yaml | 4 ++++ charts/xslt-playground/values.yaml | 2 ++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/charts/xslt-playground/Chart.yaml b/charts/xslt-playground/Chart.yaml index 3f04cd3b..757d9c29 100644 --- a/charts/xslt-playground/Chart.yaml +++ b/charts/xslt-playground/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: xslt-playground description: Helm chart for xslt-playground frontend and backend -version: 0.1.2 +version: 0.1.3 appVersion: "0.1.0" diff --git a/charts/xslt-playground/templates/frontend-deployment.yaml b/charts/xslt-playground/templates/frontend-deployment.yaml index 285c20de..05508146 100644 --- a/charts/xslt-playground/templates/frontend-deployment.yaml +++ b/charts/xslt-playground/templates/frontend-deployment.yaml @@ -38,6 +38,10 @@ spec: - name: VITE_CLARITY_ID value: {{ .Values.frontend.clarityId | quote }} {{- end }} +{{- if .Values.frontend.feedbackWebhookUrl }} + - name: VITE_FEEDBACK_WEBHOOK_URL + value: {{ .Values.frontend.feedbackWebhookUrl | quote }} +{{- end }} {{- if .Values.adsTxt }} volumeMounts: - name: ads diff --git a/charts/xslt-playground/values.yaml b/charts/xslt-playground/values.yaml index 8da7bedd..04ed9687 100644 --- a/charts/xslt-playground/values.yaml +++ b/charts/xslt-playground/values.yaml @@ -66,6 +66,8 @@ frontend: googleAnalyticsId: "" # Optional Microsoft Clarity project ID clarityId: "" + # Optional n8n webhook URL for in-app feedback form + feedbackWebhookUrl: "" # Content for the optional ads.txt file served by the frontend adsTxt: ""