Renovate automatically processing repos after upgrade to Renovate CE (Docker image 6.0.0) #340
-
After migrating to Renovate CE (Docker image 6.0.0-full) it seems that after successful startup renovate does a processing of all repositories for the entire org (running on GHES). Following environment variables are set in our setup:
Following settings in config.js (no change was done)
I can see the following in the logs:
I verified that this does not happen with v5.0.0 - it was just running according to schedule or on incoming webhook. Last message in log used to be that the server is listening. Processing all repositories takes a long time. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
I believe it's a one-time thing to run a job for each repo once the first time it's detected. @Gabriel-Ladzaretti is a job run for each repo on every startup, or only when it's added to the DB? |
Beta Was this translation helpful? Give feedback.
-
It is the former. |
Beta Was this translation helpful? Give feedback.
-
Ok so this is a change compared to the old setup. It would be nice if there would be a config to skip those initial jobs as it keeps renovate busy for 15 minutes (for a rather small org) and does not add much value when you run renovate in K8S. The pod can be re-created any time - moved to other node etc. It would put unnecessary load on GHES and other systems. Any thoughts? |
Beta Was this translation helpful? Give feedback.
-
Hi, thanks for implementing this, MEND_RNV_ENQUEUE_JOBS_ON_STARTUP = "disabled" is working for us now 👍 |
Beta Was this translation helpful? Give feedback.
Hi,
thanks for implementing this, MEND_RNV_ENQUEUE_JOBS_ON_STARTUP = "disabled" is working for us now 👍