Skip to content
Prev Previous commit
fix(kb): add missing connector sync cron job to Helm values
The connector sync endpoint existed but had no cron job configured to trigger it,
meaning scheduled syncs would never fire.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
  • Loading branch information
waleedlatif1 and claude committed Apr 8, 2026
commit b1d5279745175b57df22bbeb8d4806a6e48a3cea
9 changes: 9 additions & 0 deletions helm/sim/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -985,6 +985,15 @@ cronjobs:
successfulJobsHistoryLimit: 3
failedJobsHistoryLimit: 1

connectorSync:
enabled: true
name: connector-sync
schedule: "*/5 * * * *"
path: "/api/knowledge/connectors/sync"
concurrencyPolicy: Forbid
successfulJobsHistoryLimit: 3
failedJobsHistoryLimit: 1

# Global CronJob settings
image:
repository: curlimages/curl
Expand Down
Loading