From b838a6e0273b5bb51cfe123c6ce5f1c8fc5936a6 Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Thu, 10 Apr 2025 15:01:50 -0500 Subject: [PATCH] new: Added disable_frontend to variables in helm-chart --- helm-chart/templates/sts.yml | 2 ++ helm-chart/values.yaml | 1 + 2 files changed, 3 insertions(+) diff --git a/helm-chart/templates/sts.yml b/helm-chart/templates/sts.yml index 0c8ec29..87d142b 100644 --- a/helm-chart/templates/sts.yml +++ b/helm-chart/templates/sts.yml @@ -42,6 +42,8 @@ spec: value: "{{ .Values.slug_length }}" - name: public_mode value: {{ .Values.public_mode }} + - name: disable_frontend + value: {{ .Values.disable_frontend }} {{- if .Values.cache_control_header }} - name: cache_control_header value: {{ .Values.cache_control_header }} diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml index f6a9760..6687b33 100644 --- a/helm-chart/values.yaml +++ b/helm-chart/values.yaml @@ -20,6 +20,7 @@ redirect_method: PERMANENT slug_style: Pair slug_length: 8 public_mode: Disable +disable_frontend: False # cache_control_header: "no-cache, private" protocol: https