mirror of
https://github.com/alexandrev/xslt-lab.git
synced 2026-09-22 05:33:16 +00:00
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 <noreply@anthropic.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: xslt-playground
|
name: xslt-playground
|
||||||
description: Helm chart for xslt-playground frontend and backend
|
description: Helm chart for xslt-playground frontend and backend
|
||||||
version: 0.1.2
|
version: 0.1.3
|
||||||
appVersion: "0.1.0"
|
appVersion: "0.1.0"
|
||||||
|
|
||||||
|
|||||||
@@ -38,6 +38,10 @@ spec:
|
|||||||
- name: VITE_CLARITY_ID
|
- name: VITE_CLARITY_ID
|
||||||
value: {{ .Values.frontend.clarityId | quote }}
|
value: {{ .Values.frontend.clarityId | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.frontend.feedbackWebhookUrl }}
|
||||||
|
- name: VITE_FEEDBACK_WEBHOOK_URL
|
||||||
|
value: {{ .Values.frontend.feedbackWebhookUrl | quote }}
|
||||||
|
{{- end }}
|
||||||
{{- if .Values.adsTxt }}
|
{{- if .Values.adsTxt }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: ads
|
- name: ads
|
||||||
|
|||||||
@@ -66,6 +66,8 @@ frontend:
|
|||||||
googleAnalyticsId: ""
|
googleAnalyticsId: ""
|
||||||
# Optional Microsoft Clarity project ID
|
# Optional Microsoft Clarity project ID
|
||||||
clarityId: ""
|
clarityId: ""
|
||||||
|
# Optional n8n webhook URL for in-app feedback form
|
||||||
|
feedbackWebhookUrl: ""
|
||||||
|
|
||||||
# Content for the optional ads.txt file served by the frontend
|
# Content for the optional ads.txt file served by the frontend
|
||||||
adsTxt: ""
|
adsTxt: ""
|
||||||
|
|||||||
Reference in New Issue
Block a user