chore(auto-upgrade): run cronjob hourly at :23 (prod cherry-pick)#113
Merged
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 4fc3d16. Configure here.
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) <noreply@anthropic.com>
4fc3d16 to
cafaf27
Compare
aptracebloc
approved these changes
May 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
mainso this PR contains only the schedule change — no other unshippeddevelopcommits ride along.autoUpgrade.schedulefrom"23 2 * * *"(daily 02:23 UTC) to"23 * * * *"(hourly at :23) so deployed clients converge on the latest chart within ~1h instead of ~24h.Refs #111. Merge alongside #112; either order is fine since both PRs carry the same single-file change.
Test plan
mainis exactly the 2-lineschedule:change inclient/values.yamlhelm template ... | grep -A1 schedule:renders23 * * * *client/tests/auto_upgrade_test.yamlpasses (helm unittest client/)kubectl get cronjob -n <ns> -l app.kubernetes.io/component=auto-upgradeshows hourly schedule🤖 Generated with Claude Code
Note
Medium Risk
Changes the default self-upgrade CronJob cadence from daily to hourly, increasing how often clusters run a
helm upgradewith cluster-admin privileges and how quickly any bad chart release could roll out.Overview
Updates the default
autoUpgrade.schedulefrom daily"23 2 * * *"to hourly"23 * * * *", so deployed clients check for and apply chart upgrades within ~1 hour instead of ~24 hours.Adjusts the Helm unittest (
client/tests/auto_upgrade_test.yaml) to assert the new rendered CronJob schedule.Reviewed by Cursor Bugbot for commit cafaf27. Bugbot is set up for automated code reviews on this repo. Configure here.