File tree Expand file tree Collapse file tree 4 files changed +9
-0
lines changed
spec/chef/cookbooks/gitlab/recipes/gitlab-rails/gitlab_yml Expand file tree Collapse file tree 4 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -185,6 +185,7 @@ external_url 'GENERATED_EXTERNAL_URL'
185
185
# gitlab_rails['loose_foreign_keys_cleanup_worker_cron'] = "*/5 * * * *"
186
186
# gitlab_rails['ci_runner_versions_reconciliation_worker_cron'] = "@daily"
187
187
# gitlab_rails['ci_runners_stale_machines_cleanup_worker_cron'] = "36 * * * *"
188
+ # gitlab_rails['ci_catalog_resources_process_sync_events_worker_cron'] = "*/1 * * * *"
188
189
189
190
### Webhook Settings
190
191
###! Number of seconds to wait for HTTP response after sending webhook HTTP POST
Original file line number Diff line number Diff line change 175
175
default [ 'gitlab' ] [ 'gitlab_rails' ] [ 'ci_runners_stale_group_runners_prune_worker_cron' ] = nil
176
176
default [ 'gitlab' ] [ 'gitlab_rails' ] [ 'ci_runner_versions_reconciliation_worker_cron' ] = nil
177
177
default [ 'gitlab' ] [ 'gitlab_rails' ] [ 'ci_runners_stale_machines_cleanup_worker_cron' ] = nil
178
+ default [ 'gitlab' ] [ 'gitlab_rails' ] [ 'ci_catalog_resources_process_sync_events_worker_cron' ] = nil
178
179
179
180
# Consolidated object storage config
180
181
default [ 'gitlab' ] [ 'gitlab_rails' ] [ 'object_store' ] [ 'enabled' ] = false
Original file line number Diff line number Diff line change @@ -586,6 +586,12 @@ production: &base
586
586
cron: "<%= @ci_runners_stale_machines_cleanup_worker_cron %> "
587
587
<% end %>
588
588
589
+ # Periodically process catalog resource sync events
590
+ <% unless @ci_catalog_resources_process_sync_events_worker_cron.nil? %>
591
+ ci_catalog_resources_process_sync_events_worker:
592
+ cron: "<%= @ci_catalog_resources_process_sync_events_worker_cron %> "
593
+ <% end %>
594
+
589
595
##
590
596
# GitLab EE only jobs:
591
597
Original file line number Diff line number Diff line change 53
53
'ci_runner_versions_reconciliation_worker' | 'ci_runner_versions_reconciliation_worker_cron'
54
54
'ci_runners_stale_machines_cleanup_worker' | 'ci_runners_stale_machines_cleanup_worker_cron'
55
55
'click_house_ci_finished_builds_sync_worker' | 'click_house_ci_finished_builds_sync_worker_cron'
56
+ 'ci_catalog_resources_process_sync_events_worker' | 'ci_catalog_resources_process_sync_events_worker_cron'
56
57
end
57
58
58
59
with_them do
You can’t perform that action at this time.
0 commit comments