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

#251 initial work on cron job support #257

Merged
merged 5 commits into from
Aug 29, 2018
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
watching cron jobs
  • Loading branch information
rusenask committed Aug 29, 2018
commit 01903f5050bcbd3c2041561566f5c7d7e50f1081
1 change: 1 addition & 0 deletions cmd/keel/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ func main() {
k8s.WatchDeployments(&g, implementer.Client(), wl, buf)
k8s.WatchStatefulSets(&g, implementer.Client(), wl, buf)
k8s.WatchDaemonSets(&g, implementer.Client(), wl, buf)
k8s.WatchCronJobs(&g, implementer.Client(), wl, buf)

approvalsCache := memory.NewMemoryCache(24*time.Hour, 24*time.Hour, 10*time.Second)

Expand Down