From 5ffc1005f3dc35bef6600242918ff7339838e213 Mon Sep 17 00:00:00 2001 From: Dody Date: Wed, 19 Nov 2025 15:00:48 +0700 Subject: [PATCH] fix: timezone not applied because of lowercase --- templates/cron.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/cron.yaml b/templates/cron.yaml index 569c096..5fd5933 100644 --- a/templates/cron.yaml +++ b/templates/cron.yaml @@ -9,8 +9,8 @@ spec: {{- if hasKey .Values "suspend" }} suspend: {{ .Values.suspend }} {{- end }} - {{- if .Values.timezone }} - timeZone: {{ .Values.timezone | quote }} + {{- if .Values.timeZone }} + timeZone: {{ .Values.timeZone | quote }} {{- end }} concurrencyPolicy: {{ .Values.concurrencyPolicy }} failedJobsHistoryLimit: {{ .Values.failedJobsHistoryLimit }}