Skip to content

Commit

Permalink
fix: Sync registries periodically
Browse files Browse the repository at this point in the history
Include container registries secret sync to period K8s reconciliation
  • Loading branch information
kuzznya committed Feb 29, 2024
1 parent 4b6e31b commit 06e3955
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/core/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ func sync(core *Core) chrono.Task {
log.WithError(err).Errorf("Project %s sync failed, skipping", project.Id)
continue
}
if err := core.Registries.syncKubernetes(ctx, project.Id); err != nil {
log.WithError(err).Errorf("Project %s registries sync failed", project.Id)
}
if err := core.Services.syncKubernetes(ctx, project.Id); err != nil {
log.WithError(err).Errorf("Project %s services sync failed", project.Id)
}
Expand Down

0 comments on commit 06e3955

Please sign in to comment.