Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(konflux): Migrate renovate configuration #553

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
":gitSignOff"
],
"timezone": "America/Toronto",
"schedule": ["on the 2nd and 4th day instance on thursday after 9pm"],
"enabledManagers": ["regex", "github-actions"],
"schedule": ["after 9pm on tuesday and thursday"],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

QQ: Was this a requirement from the konflux side? I'm only thinking it might increase the noise for image updates.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was wondering if something like https://docs.renovatebot.com/key-concepts/scheduling/#schedule-when-to-update-specific-dependencies could be of help (so we can have the tekton updates on a different - more often - schedule).

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@thepetk

QQ: Was this a requirement from the konflux side? I'm only thinking it might increase the noise for image updates.

Not a requirement from the Konflux side but due to the frequency in Konflux updates and the outdated images causing EC testing to fail, blocks deployment promotions, we need a higher frequency in renovate patching on the tekton task images.

I was wondering if something like https://docs.renovatebot.com/key-concepts/scheduling/#schedule-when-to-update-specific-dependencies could be of help (so we can have the tekton updates on a different - more often - schedule).

I like this suggestion, I've opened #555 to use the Tuesday/Thursday schedule for only Konflux patching while everything else will be restored to every 2nd and 4th Thursday evening.

"enabledManagers": ["regex", "github-actions", "tekton"],
"regexManagers": [
{
"fileMatch": [
Expand All @@ -21,12 +21,12 @@
}
],
"packageRules": [
{
"matchManagers": ["github-actions"],
"groupName": "github actions",
"groupSlug": "github-actions",
"commitMessageTopic": "{{depName}}"
}
{
"matchManagers": ["github-actions"],
"groupName": "github actions",
"groupSlug": "github-actions",
"commitMessageTopic": "{{depName}}"
}
],
"ignorePaths": [
"**/docker/**",
Expand Down
Loading