From 66252c7dc806e4317e78a08215dd25a17d1416fc Mon Sep 17 00:00:00 2001 From: Asad Iqbal Date: Thu, 7 May 2026 15:05:41 +0500 Subject: [PATCH] chore(auto-upgrade): run cronjob hourly at :23 Switches the auto-upgrade CronJob default schedule from "23 2 * * *" (daily 02:23 UTC) to "23 * * * *" (hourly at :23). Co-Authored-By: Claude Opus 4.7 (1M context) --- client/tests/auto_upgrade_test.yaml | 2 +- client/values.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/tests/auto_upgrade_test.yaml b/client/tests/auto_upgrade_test.yaml index 7af68bd..57d36bb 100644 --- a/client/tests/auto_upgrade_test.yaml +++ b/client/tests/auto_upgrade_test.yaml @@ -77,7 +77,7 @@ tests: value: stg-auto-upgrade - equal: path: spec.schedule - value: "23 2 * * *" + value: "23 * * * *" - equal: path: spec.concurrencyPolicy value: Forbid diff --git a/client/values.yaml b/client/values.yaml index 2e6c40d..dab4804 100644 --- a/client/values.yaml +++ b/client/values.yaml @@ -325,9 +325,9 @@ autoUpgrade: # Default ON: the entire point of #69 is that customers freeze on the # version they installed. Defaulting off would recreate that exact bug. enabled: true - # Daily at 02:23 UTC. The off-hour minute spreads load across the + # Hourly at :23. The off-hour minute spreads load across the # tracebloc.github.io/client GitHub Pages origin. - schedule: "23 2 * * *" + schedule: "23 * * * *" # Helm chart repo to poll. Override only when mirroring internally. repoUrl: "https://tracebloc.github.io/client" repoName: "tracebloc"