Jonathan Dunlap
Jonathan Dunlap

Reputation: 2631

DC/OS schedule container updates

Is it possible to use DC/OS or Marathon to repeatedly check when a new container image update is available and update the live containers in the cluster? I'd like to avoid having Docker Hub be aware of the cluster and implementing web hooks... versus the cluster just check for image updates via a job.

Upvotes: 2

Views: 120

Answers (1)

KarlKFI
KarlKFI

Reputation: 3112

Marathon doesn't do this.

If you want polling, however, you could try using custom scheduled jobs with Metronome (built into DC/OS 1.8) or Chronos. Poll for dockerhub image updates and use the Marathon API to trigger app updates.

Upvotes: 2

Related Questions